:root {
    --primary-color: #d4a574;
    --primary-dark: #b88a5d;
    --secondary-color: #5a7d8c;
    --accent-color: #f5e6d3;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --background: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e1e8ed;
    --success: #28a745;
    --error: #dc3545;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar {
    background-color: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo:hover {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--background-light) 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background-color: var(--accent-color);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--background);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--background);
}

.btn-secondary:hover {
    background-color: #4a6a77;
    color: var(--background);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.intro {
    background-color: var(--background-light);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
}

.testimonials {
    background-color: var(--accent-color);
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.testimonial cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.cta-section {
    background-color: var(--secondary-color);
    color: var(--background);
    text-align: center;
}

.cta-section h2 {
    color: var(--background);
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-story,
.approach,
.values,
.why-different {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p,
.why-different p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.approach-grid,
.values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item,
.value-item {
    flex: 1 1 calc(50% - 1rem);
}

.approach-item h3,
.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-item p,
.value-item p {
    color: var(--text-light);
}

.services-intro {
    background-color: var(--background-light);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--background);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-details {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-details li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.services-note {
    background-color: var(--accent-color);
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
}

.note-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.contact-content {
    padding: 2rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info,
.contact-tips {
    flex: 1 1 calc(50% - 1.5rem);
}

.contact-info h2,
.contact-tips h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info p,
.contact-tips p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.method-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.tips-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tips-list li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tips-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.faq {
    background-color: var(--background-light);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

.privacy-note {
    background-color: var(--accent-color);
    text-align: center;
}

.privacy-note p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.thank-you-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--background-light) 100%);
    padding: 4rem 0;
    text-align: center;
}

.thank-you-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text-light);
}

.thank-you-content {
    max-width: 900px;
    margin: 0 auto;
}

.thank-you-info,
.thank-you-tips {
    margin-bottom: 3rem;
}

.thank-you-info h2,
.thank-you-tips h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
}

.general-tips {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.general-tips li {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.continue-exploring {
    background-color: var(--background-light);
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.explore-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    display: block;
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-4px);
}

.explore-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.explore-card p {
    color: var(--text-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-section strong {
    color: var(--text-dark);
}

footer {
    background-color: var(--text-dark);
    color: var(--background);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 calc(33.333% - 1.5rem);
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--background-light);
    margin-bottom: 1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: var(--background-light);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--background-light);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option span {
    color: var(--text-dark);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
        box-shadow: 0 4px 6px var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0 20px;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .benefits-grid,
    .approach-grid,
    .values-content,
    .faq-grid,
    .explore-links {
        flex-direction: column;
    }

    .benefit-card,
    .approach-item,
    .value-item,
    .faq-item,
    .explore-card {
        flex: 1 1 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-info,
    .contact-tips {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-buttons .btn {
        width: 100%;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .benefit-card,
    .testimonial,
    .service-card {
        padding: 1.5rem;
    }
}