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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #8b6f47;
    --accent-color: #c89f6f;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 4px 8px;
    background: var(--bg-light);
    border-radius: 4px;
    order: 3;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
}

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

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

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    padding: 60px 40px;
    max-width: 800px;
    text-align: center;
    margin: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.hero-overlay h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 20px 60px;
    text-align: center;
    color: var(--bg-white);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.intro-card-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.highlight-card {
    background: var(--primary-color);
    color: var(--bg-white);
}

.highlight-card h2 {
    color: var(--bg-white);
}

.emphasis-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
}

.story-section {
    padding: 60px 20px;
}

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

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.card-grid-three {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.problem-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.insight-section {
    padding: 80px 20px;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-link {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 10px;
}

.cta-link:hover {
    background: var(--secondary-color);
}

.insight-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.trust-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.card-grid-two {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.testimonial-section {
    padding: 80px 20px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.services-preview {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 35px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.featured-service {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(44, 95, 122, 0.05), rgba(200, 159, 111, 0.05));
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
}

.btn-primary,
.btn-secondary,
.btn-large,
.btn-large-alt,
.btn-submit {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #1e4458;
}

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

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

.btn-large {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.btn-large-alt {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.btn-submit {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

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

.cta-inline {
    padding: 60px 20px;
    background: var(--bg-light);
}

.cta-card-inline {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

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

.cta-card-inline p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.benefits-section {
    padding: 80px 20px;
}

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

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

.benefit-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(44, 95, 122, 0.08), rgba(139, 111, 71, 0.08));
}

.form-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

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

.form-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.final-cta-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.final-cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
}

.final-cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.sticky-cta button {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sticky-cta button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

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

.footer-column a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-column p {
    color: var(--bg-light);
    line-height: 1.8;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: var(--bg-light);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 101;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.about-grid,
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content,
.contact-info-card {
    flex: 1;
}

.about-content h2,
.contact-info-card h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.about-image img,
.contact-image-card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-intro,
.contact-info-section {
    padding: 80px 20px;
}

.values-section,
.team-section,
.mission-section {
    padding: 80px 20px;
}

.values-section {
    background: var(--bg-light);
}

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

.value-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.mission-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

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

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

.cta-section,
.service-cta {
    padding: 60px 20px;
    background: var(--bg-white);
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-detail-card.reverse {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
}

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

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

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 10px;
}

.contact-caption {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-cta-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.contact-cta-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

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

.contact-cta-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-selected {
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.thanks-next-steps {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.legal-page {
    padding: 60px 20px;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .ad-disclosure {
        order: 2;
        width: auto;
        margin-top: 0;
    }

    .hero-overlay h1 {
        font-size: 3rem;
    }

    .card-grid-two {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-card,
    .benefit-item {
        flex: 1 1 calc(50% - 15px);
    }

    .card-grid-three {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card,
    .service-card,
    .value-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .insight-grid,
    .about-grid,
    .contact-grid {
        flex-direction: row;
        align-items: center;
    }

    .insight-content,
    .insight-image,
    .about-content,
    .about-image,
    .contact-info-card,
    .contact-image-card {
        flex: 1;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

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

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

    .service-detail-image {
        flex: 0.8;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}