:root {
    --primary-color: #2C3E50;
    --secondary-color: #F8F8F8;
    --accent-teal: #A2D9CE;
    --accent-pink: #E6B0AA;
    --accent-purple: #7D3C98;
    --text-primary: #2C3E50;
    --text-secondary: #6B7C8D;
    --text-light: #AABCCF;
    --border-color: #DDD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-balance: true;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.8;
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--accent-pink);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: var(--primary-color) !important;
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--accent-teal) !important;
}

.main-content {
    padding-top: 80px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    background-color: #F5F5F5;
}

.hero-content {
    padding: 2rem;
}

.hero-section h1 {
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.disclaimer-badge {
    display: inline-block;
    background-color: var(--accent-pink);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 500px;
    object-fit: cover;
}

.content-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.content-section:nth-child(even) {
    background-color: var(--secondary-color);
}

.section-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-block.alternate {
    grid-template-columns: 1fr 1fr;
}

.section-block.alternate .section-image {
    order: -1;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 600px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.content-text {
    padding: 1rem 0;
}

.content-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.info-cards-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.info-cards-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-left: 4px solid var(--accent-teal);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-link {
    display: inline-block;
    color: var(--accent-teal);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.btn-link:hover {
    color: var(--accent-pink);
    border-bottom-color: var(--accent-pink);
}

.featured-section {
    padding: 5rem 0;
    background-color: white;
}

.featured-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.featured-text {
    padding: 1rem 0;
}

.featured-text h2 {
    margin-bottom: 1.5rem;
}

.featured-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.page-hero {
    padding: 3rem 0 2rem;
    background-color: #F5F5F5;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 2rem;
}

.page-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 0.5rem;
}

.blog-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.blog-card .btn-link {
    display: inline-block;
    padding: 1.5rem;
    padding-top: 0;
}

.blog-article {
    max-width: 900px;
    margin: 0 auto;
}

.blog-article h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.blog-article h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-article p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.blog-article ul {
    margin: 1.5rem 0;
    margin-left: 2rem;
    color: var(--text-secondary);
}

.blog-article ul li {
    margin-bottom: 0.75rem;
}

.disclaimer-section {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-left: 4px solid var(--accent-pink);
    border-radius: 4px;
    margin: 3rem 0;
}

.disclaimer-section h3 {
    margin-top: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.form-disclaimer {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-teal);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(162, 217, 206, 0.1);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
}

.thank-you-message {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.thank-you-message .btn-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-teal);
    color: white;
    border-radius: 4px;
    font-weight: 600;
}

.thank-you-message .btn-link:hover {
    background-color: var(--accent-pink);
    color: white;
}

.policy-article {
    max-width: 900px;
    margin: 0 auto;
}

.policy-article h2 {
    margin: 2rem 0 1rem;
}

.policy-article h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-article p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.policy-article ul {
    margin: 1.5rem 0;
    margin-left: 2rem;
}

.policy-article ul li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.footer-section {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-block h3 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: var(--accent-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: -400px;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 999;
    transition: bottom 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-banner p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.65rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-cookie:hover {
    background-color: var(--accent-teal);
    border-color: var(--accent-teal);
    color: var(--primary-color);
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie.btn-info {
    color: white;
    text-decoration: underline;
}

.btn-cookie.btn-info:hover {
    background-color: transparent;
    color: var(--accent-teal);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .section-block,
    .featured-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-block.alternate .section-image {
        order: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }

    .navbar-nav {
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html, body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-content,
    .section-block,
    .blog-card {
        padding: 1rem;
    }

    .disclaimer-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-section,
    .content-section {
        padding: 2rem 0;
    }

    .info-cards-section,
    .featured-section {
        padding: 2rem 0;
    }
}
