:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2740;
    --secondary: #d4a853;
    --secondary-light: #e8c87a;
    --accent: #c45c3e;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #f7f5f2;
    --bg-alt: #eee9e2;
    --white: #ffffff;
    --border: #d1cdc6;
    --shadow: rgba(26, 58, 92, 0.12);
    --sidebar-width: 260px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

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

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.site-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background-color: var(--primary);
    color: var(--white);
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-header {
    padding: 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.ad-disclosure {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    line-height: 1.4;
}

.sidebar-nav {
    flex: 1;
    padding: 24px 0;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 4px;
}

.sidebar-nav a {
    display: block;
    padding: 12px 24px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: rgba(255,255,255,0.08);
    color: var(--white);
    border-left-color: var(--secondary);
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.sidebar-footer a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 6px;
}

.sidebar-footer a:hover {
    color: var(--secondary);
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background-color: var(--primary-dark);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 64px;
    max-width: 720px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

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

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

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

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

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

.btn-accent:hover {
    background-color: #a84b31;
}

.section {
    padding: 80px 64px;
}

.section-alt {
    background-color: var(--bg-alt);
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 48px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.75);
}

.intro-grid {
    display: flex;
    gap: 48px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.intro-text p {
    margin-bottom: 16px;
}

.intro-image {
    flex: 0 0 400px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border);
}

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

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    flex: 1 1 280px;
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-dark);
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-content p {
    font-size: 14px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 320px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.service-image {
    height: 180px;
    background-color: var(--border);
    overflow: hidden;
}

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

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.testimonials-container {
    max-width: 800px;
}

.testimonial {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px var(--shadow);
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.testimonial-location {
    font-size: 14px;
    color: var(--text-light);
}

.cta-box {
    background-color: var(--primary);
    padding: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-box h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
}

.about-content {
    display: flex;
    gap: 48px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 16px;
}

.about-sidebar {
    flex: 0 0 320px;
}

.info-card {
    background-color: var(--white);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    margin-bottom: 24px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 12px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card li svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
    flex-shrink: 0;
}

.contact-grid {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary);
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-dark);
}

.contact-detail h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-detail p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form-container {
    flex: 0 0 480px;
}

.form-card {
    background-color: var(--white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px var(--shadow);
}

.form-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--primary);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--bg);
    color: var(--text);
    transition: border-color 0.2s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.footer {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 64px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal a {
    margin-left: 24px;
}

.disclaimer {
    background-color: var(--bg-alt);
    padding: 24px 64px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid var(--border);
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.thanks-card {
    background-color: var(--white);
    padding: 64px;
    border-radius: 12px;
    text-align: center;
    max-width: 560px;
    box-shadow: 0 8px 32px var(--shadow);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary);
}

.thanks-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.policy-content {
    max-width: 800px;
}

.policy-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary);
}

.policy-content h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary);
}

.policy-content p {
    margin-bottom: 16px;
}

.policy-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-content li {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: var(--sidebar-width);
    right: 0;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 40px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 16px var(--shadow);
}

.cookie-banner.visible {
    display: flex;
}

.cookie-text {
    font-size: 14px;
    flex: 1;
}

.cookie-text a {
    color: var(--secondary);
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-accept {
    background-color: var(--secondary);
    color: var(--primary-dark);
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 200;
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cookie-banner {
        left: 0;
    }

    .section {
        padding: 48px 24px;
    }

    .hero-content {
        padding: 32px 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .intro-grid,
    .about-content,
    .contact-grid {
        flex-direction: column;
    }

    .intro-image,
    .about-sidebar,
    .contact-form-container {
        flex: none;
        width: 100%;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        padding: 32px 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 12px;
    }

    .disclaimer {
        padding: 20px 24px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 26px;
    }

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

    .service-card {
        flex: none;
    }

    .cookie-banner {
        flex-direction: column;
        padding: 16px 20px;
    }

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