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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2C2C2C;
    background-color: #FFFFFF;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2C2C2C;
}

.nav-main {
    display: flex;
    gap: 35px;
}

.nav-main a {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #8B7355;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    background-color: #F5F5F5;
    padding: 5px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #F8F6F3;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4A4A4A;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1A1A1A;
}

.story-section {
    background-color: #FFFFFF;
    padding: 80px 20px;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.split-reverse,
.split-standard {
    display: flex;
    min-height: 500px;
}

.split-reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
}

.problem-amplify {
    background-color: #F8F6F3;
    padding: 80px 20px;
}

.problem-amplify h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.problem-amplify p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.services-reveal {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.services-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #2C2C2C;
}

.service-card p {
    font-size: 16px;
    margin: 0 20px 15px;
    color: #666;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
    margin: 20px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px 20px;
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1A1A1A;
}

.btn-select-service.selected {
    background-color: #8B7355;
}

.form-section {
    background-color: #F8F6F3;
    padding: 80px 20px;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2C2C2C;
}

.form-section > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

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

.service-display {
    background-color: #F0EDE8;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    text-align: center;
}

.service-display p {
    margin: 0;
    font-size: 16px;
    color: #2C2C2C;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2C2C2C;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1A1A1A;
}

.btn-submit:disabled {
    background-color: #CCCCCC;
    cursor: not-allowed;
}

.testimonials {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C2C2C;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #F8F6F3;
    padding: 30px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #8B7355;
}

.footer {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-section {
    flex: 1 1 200px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: #CCCCCC;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #FFFFFF;
}

.disclaimer-text {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #8B7355;
    color: #FFFFFF;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: #F8F6F3;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
}

.about-content {
    background-color: #FFFFFF;
}

.team-section {
    background-color: #F8F6F3;
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.values-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C2C2C;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #F8F6F3;
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.value-card p {
    font-size: 16px;
    color: #4A4A4A;
}

.cta-section {
    background-color: #F8F6F3;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4A4A4A;
}

.services-detail {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 50px;
}

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

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4A4A4A;
}

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

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4A4A4A;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 20px;
}

.process-section {
    background-color: #F8F6F3;
    padding: 80px 20px;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C2C2C;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #8B7355;
    min-width: 60px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.process-step p {
    font-size: 16px;
    color: #4A4A4A;
}

.contact-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.contact-layout {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.info-block p {
    font-size: 16px;
    color: #4A4A4A;
}

.email-display {
    font-weight: 600;
    color: #2C2C2C;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 16px;
    color: #666;
}

.faq-section {
    background-color: #F8F6F3;
    padding: 80px 20px;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2C2C2C;
}

.faq-item {
    margin-bottom: 30px;
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.faq-item p {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.7;
}

.legal-page {
    background-color: #FFFFFF;
}

.legal-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4A4A4A;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4A4A4A;
}

.legal-date {
    margin-top: 40px;
    font-weight: 600;
    color: #2C2C2C;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #D0D0D0;
}

.cookie-table th {
    background-color: #F8F6F3;
    font-weight: 600;
    color: #2C2C2C;
}

.cookie-table td {
    font-size: 15px;
    color: #4A4A4A;
}

.link-text {
    font-family: monospace;
    background-color: #F0F0F0;
    padding: 2px 6px;
    border-radius: 3px;
}

.thanks-page {
    background-color: #F8F6F3;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.thanks-container {
    max-width: 700px;
    background-color: #FFFFFF;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.thanks-icon {
    font-size: 60px;
    color: #8B7355;
    margin-bottom: 25px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4A4A4A;
}

.service-confirmation {
    background-color: #F8F6F3;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.service-confirmation p {
    font-size: 16px;
    color: #2C2C2C;
    margin: 0;
}

.thanks-next {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: #FFFFFF;
    color: #2C2C2C;
    border: 2px solid #2C2C2C;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #2C2C2C;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 15px;
    }

    .nav-main {
        gap: 20px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .split-reverse,
    .split-standard {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

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

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