* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #D4C4A8;
    --color-primary-dark: #B8A68A;
    --color-primary-light: #E8DDCC;
    --color-secondary: #F5E6D3;
    --color-accent: #C9B99B;
    --color-text: #4A4A4A;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-light: #FAF8F5;
    --color-border: #E0D5C4;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--color-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    text-decoration: none;
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-text {
    color: var(--color-primary-dark);
}

.nav {
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-primary-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.main-content {
    min-height: calc(100vh - 200px);
}

.hero {
    position: relative;
    padding: 80px 0;
    background: var(--color-light);
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-image {
    flex: 1;
    max-width: 50%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
}

.section {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
}

.section:first-of-type {
    border-top: none;
}

.hero + .section {
    border-top: 1px solid var(--color-border);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cards-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--color-secondary);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.card-text {
    color: var(--color-text-light);
    line-height: 1.8;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.table th {
    background: var(--color-primary-light);
    font-weight: 600;
    color: var(--color-text);
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover {
    background: var(--color-secondary);
}

.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    bottom: -50px;
    width: 2px;
    background: var(--color-primary);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
    margin-right: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.timeline-text {
    color: var(--color-text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefits-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

.benefit-item {
    text-align: left;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-secondary);
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.benefit-badge-icon {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 3px;
    display: inline-block;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--color-secondary);
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 600;
}

.benefit-text {
    color: var(--color-text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-secondary);
    margin-right: 1rem;
    object-fit: cover;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    color: var(--color-text);
}

.review-text {
    color: var(--color-text-light);
    line-height: 1.8;
    font-style: italic;
}

.footer {
    background: var(--color-primary-dark);
    color: var(--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-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-disclaimer-inline {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer-inline p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.9;
    margin: 0;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-org {
    font-size: 0.85rem;
    opacity: 0.8;
}

.form-container {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 60px 0;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image {
        max-width: 100%;
        order: 1;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        order: 2;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .table-container {
        overflow-x: visible;
        margin: 1.5rem 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .table {
        width: 100%;
        max-width: 100%;
        font-size: 0.75rem;
        display: table;
        margin: 0 auto;
    }

    .table th,
    .table td {
        padding: 0.5rem 0.4rem;
        font-size: 0.75rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .table th {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-number {
        margin-bottom: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid-2x2 {
        grid-template-columns: 1fr;
    }

    .cards-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .table-container {
        margin: 1rem 0;
        padding: 0 10px;
    }

    .table {
        font-size: 0.7rem;
    }

    .table th,
    .table td {
        padding: 0.4rem 0.3rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .table th {
        font-size: 0.75rem;
        padding: 0.5rem 0.3rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid var(--color-primary);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-notice-text {
    flex: 1;
    min-width: 250px;
}

.cookie-notice-text p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-link {
    color: var(--color-primary-dark);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: var(--color-primary);
}

.cookie-notice-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 25px;
    font-size: 0.95rem;
}

.btn-cookie-accept:hover {
    background: var(--color-primary-dark);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
    padding: 10px 25px;
    font-size: 0.95rem;
}

.btn-cookie-decline:hover {
    background: var(--color-secondary);
    border-color: var(--color-primary);
    color: var(--color-text);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 1.2rem;
    }
    
    .cookie-notice-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-notice-text {
        min-width: 100%;
    }
    
    .cookie-notice-buttons {
        width: 100%;
        justify-content: stretch;
    }
    
    .btn-cookie-accept,
    .btn-cookie-decline {
        flex: 1;
        min-width: 120px;
    }
}

