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

:root {
    --color-primary: #2d5f3f;
    --color-secondary: #8b6f47;
    --color-accent: #d4a574;
    --color-light: #f9f6f2;
    --color-dark: #2c2c2c;
    --color-gray: #666;
    --color-border: #e0dcd7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--color-dark);
    background: #fff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.96);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

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

.btn-cookie:hover {
    background: #234a31;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: white;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-gray);
    padding: 4px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero {
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    font-weight: 300;
}

.intro-section {
    padding: 60px 0;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: var(--color-light);
    border-radius: 12px;
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.intro-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-gray);
}

.story-section {
    padding: 80px 0;
    background: white;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-card.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--color-gray);
}

.insight-section {
    padding: 80px 0;
    background: var(--color-light);
}

.insight-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.insight-box h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.insight-box p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.insight-box a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.insight-box a:hover {
    text-decoration: underline;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: var(--color-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 600;
}

.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--color-gray);
}

.services-preview {
    padding: 80px 0;
    background: var(--color-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.4rem;
    color: var(--color-primary);
}

.service-card p {
    padding: 0 25px 15px;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.service-price {
    padding: 0 25px 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.btn-select {
    margin: 0 25px 25px;
    padding: 12px 0;
    width: calc(100% - 50px);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #234a31;
}

.order-section {
    padding: 80px 0;
}

.order-section.hidden {
    display: none;
}

.order-form-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.order-form-card h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-primary);
    text-align: center;
}

.selected-service-display {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--color-light);
    border-radius: 8px;
    text-align: center;
}

.selected-service-display strong {
    color: var(--color-dark);
}

.selected-service-display span {
    color: var(--color-primary);
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #234a31;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fff9f0;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-left: 4px solid var(--color-secondary);
    border-radius: 6px;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-references {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-references h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-references p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-references a {
    color: var(--color-accent);
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.page-hero {
    padding: 80px 0;
    background: var(--color-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--color-gray);
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--color-gray);
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    margin-top: 80px;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--color-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.value-card p {
    font-size: 1rem;
    color: var(--color-gray);
}

.team-section {
    margin-top: 80px;
    padding: 50px;
    background: var(--color-light);
    border-radius: 12px;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.team-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--color-gray);
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--color-gray);
}

.service-detail-content ul {
    margin: 25px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-gray);
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 25px 0;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background: var(--color-light);
    border-radius: 8px;
}

.contact-note p {
    font-size: 1rem;
    color: var(--color-gray);
}

.contact-image-section {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    padding: 50px;
    background: var(--color-light);
    border-radius: 12px;
}

.location-details h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.location-details p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--color-gray);
}

.location-details ul {
    margin: 25px 0;
    padding-left: 25px;
}

.location-details ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-gray);
}

.thanks-section {
    padding: 100px 0;
    background: var(--color-light);
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--color-gray);
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background: var(--color-light);
    border-radius: 8px;
}

.service-confirmation.hidden {
    display: none;
}

.service-confirmation p {
    font-size: 1.05rem;
    color: var(--color-dark);
}

.service-confirmation span {
    color: var(--color-primary);
    font-weight: 600;
}

.thanks-next-steps {
    margin: 40px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    text-align: center;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--color-gray);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #234a31;
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.legal-content {
    padding: 80px 0;
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--color-secondary);
}

.legal-section p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--color-gray);
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-gray);
}

.legal-section a {
    color: var(--color-secondary);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .story-card,
    .story-card.reverse,
    .about-grid,
    .about-grid.reverse,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-layout {
        flex-direction: column;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .thanks-card {
        padding: 40px 25px;
    }

    .thanks-card h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}