:root {
    --primary: #1a2f4a;
    --secondary: #c9a55c;
    --accent: #3d5a80;
    --light: #f8f6f2;
    --dark: #0d1821;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --white: #ffffff;
    --border: #e2ded6;
    --success: #2d7a4f;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

.ad-disclosure {
    background-color: var(--dark);
    color: var(--text-light);
    font-size: 12px;
    padding: 8px 0;
    text-align: center;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

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

.main-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

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

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

.main-nav a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p {
    font-size: 19px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-offset {
    flex: 0 0 380px;
    background-color: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transform: translateY(30px);
}

.hero-offset h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-offset ul {
    margin-bottom: 25px;
}

.hero-offset li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.hero-offset li:last-child {
    border-bottom: none;
}

.hero-offset li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

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

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

.btn-primary:hover {
    background-color: #b8944d;
    transform: translateY(-2px);
}

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

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

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

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

.btn-full {
    width: 100%;
}

.section {
    padding: 100px 0;
}

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

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

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.8);
}

.section-header-center {
    text-align: center;
}

.section-header-center p {
    margin: 0 auto;
}

.asymmetric-intro {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.asymmetric-intro-content {
    flex: 1;
    padding-top: 40px;
}

.asymmetric-intro-visual {
    flex: 0 0 45%;
    position: relative;
}

.asymmetric-intro-visual .img-container {
    background-color: var(--accent);
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

.asymmetric-intro-visual .floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    max-width: 280px;
}

.floating-card h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

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

.services-mosaic {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-wide {
    flex: 0 0 calc(60% - 12.5px);
    display: flex;
}

.service-card-narrow {
    flex: 0 0 calc(40% - 12.5px);
}

.service-card-img {
    background-color: var(--accent);
    height: 200px;
    overflow: hidden;
}

.service-card-wide .service-card-img {
    flex: 0 0 45%;
    height: auto;
    min-height: 280px;
}

.service-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-wide .service-card-body {
    flex: 1;
    justify-content: center;
}

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

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

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

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

.benefit-item {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-icon {
    flex: 0 0 70px;
    height: 70px;
    background-color: rgba(201, 165, 92, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

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

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

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

.testimonial-featured {
    flex: 0 0 55%;
    background-color: var(--white);
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonial-featured blockquote {
    font-size: 22px;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent);
    overflow: hidden;
}

.testimonial-author-info h5 {
    font-size: 16px;
    color: var(--primary);
}

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

.testimonial-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-small {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-small p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 15px;
}

.testimonial-small .testimonial-author-info h5 {
    font-size: 14px;
}

.testimonial-small .testimonial-author-info span {
    font-size: 13px;
}

.cta-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.cta-split-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-split-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-split-visual {
    flex: 0 0 50%;
    background-color: var(--accent);
    overflow: hidden;
}

.cta-split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 650px;
    margin: 0 auto;
}

.form-container h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.15);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.about-intro-text {
    flex: 1;
}

.about-intro-text h1 {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-intro-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-intro-img {
    flex: 0 0 45%;
    background-color: var(--accent);
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.team-section {
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 0 0 280px;
    text-align: center;
}

.team-member-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--accent);
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-member h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member span {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 14px;
    color: var(--text);
}

.services-list-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item-full {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-item-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-full .service-img {
    flex: 0 0 40%;
    background-color: var(--accent);
    min-height: 320px;
    overflow: hidden;
}

.service-item-full .service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item-full h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.service-item-full .service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-item-full .service-price {
    font-size: 28px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-info h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

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

.contact-detail-content p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 0;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-brand {
    flex: 0 0 35%;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 50px;
}

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

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

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

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

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

.footer-legal a {
    color: rgba(255,255,255,0.6);
    margin-left: 25px;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-banner p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    flex: 1;
}

.cookie-banner p a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 12px 25px;
    font-size: 14px;
}

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

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

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

.page-header h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

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

.legal-content h2 {
    font-size: 26px;
    color: var(--primary);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
}

.legal-content ul li {
    list-style: disc;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 10px;
}

.disclaimer-box {
    background-color: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 25px 30px;
    margin: 40px 0;
}

.disclaimer-box p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-offset {
        flex: none;
        width: 100%;
        max-width: 450px;
        transform: none;
    }

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

    .asymmetric-intro {
        flex-direction: column;
    }

    .asymmetric-intro-visual {
        flex: none;
        width: 100%;
    }

    .service-card-wide,
    .service-card-narrow {
        flex: 0 0 100%;
    }

    .service-card-wide {
        flex-direction: column;
    }

    .service-card-wide .service-card-img {
        flex: none;
        height: 200px;
    }

    .benefit-item {
        flex: 0 0 100%;
    }

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

    .testimonial-featured {
        flex: none;
    }

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

    .cta-split-visual {
        flex: none;
        height: 300px;
    }

    .about-intro {
        flex-direction: column;
    }

    .about-intro-img {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .service-item-full,
    .service-item-full:nth-child(even) {
        flex-direction: column;
    }

    .service-item-full .service-img {
        flex: none;
        height: 250px;
    }

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

    .contact-info {
        flex: none;
    }

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

    .footer-brand {
        flex: none;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        border-top: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

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