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

:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #2c3e50;
    --bg: #ffffff;
    --border: #bdc3c7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #2980b9;
}

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

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

.header-top {
    background-color: var(--light);
    padding: 0.5rem 0;
    text-align: center;
}

.ad-notice {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 500;
}

.header-asymmetric {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--light);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-block {
    max-width: 550px;
    margin-left: 0;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
    background-color: #dfe6e9;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.intro-offset {
    padding: 5rem 2rem;
    background-color: white;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto 0 10%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.intro-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.insight-visual {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--light);
}

.insight-image-left {
    flex: 0 0 45%;
    background-color: #b2bec3;
}

.insight-image-left img {
    width: 100%;
    height: 500px;
}

.insight-text-right {
    flex: 1;
}

.insight-text-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.insight-text-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.services-grid {
    padding: 6rem 2rem;
    background-color: white;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--secondary);
}

.services-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-1,
.card-4 {
    flex: 0 0 calc(40% - 1rem);
}

.card-2,
.card-5 {
    flex: 0 0 calc(60% - 1rem);
}

.card-3 {
    flex: 0 0 calc(50% - 1rem);
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary);
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: var(--secondary);
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 1.5rem;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--accent);
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: var(--primary);
    color: white;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-inline cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.form-section-offset {
    padding: 6rem 2rem;
    background-color: var(--light);
}

.form-container {
    max-width: 600px;
    margin: 0 15% 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.form-container > p {
    margin-bottom: 2rem;
    color: var(--secondary);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-top: 1px solid var(--border);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.7;
}

.footer-split {
    background-color: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-split h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-split ul li {
    margin-bottom: 0.5rem;
}

.footer-split a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-split a:hover {
    color: white;
}

.thanks-container {
    max-width: 700px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--light);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.thanks-info {
    background-color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home:hover {
    background-color: #2980b9;
}

.page-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.page-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-info strong {
    color: var(--primary);
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        transform: none;
    }

    .hero-image-overlap img {
        clip-path: none;
        height: 400px;
    }

    .hero-text-block {
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 2.25rem;
    }

    .insight-visual {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-image-left {
        flex: 0 0 auto;
        width: 100%;
    }

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

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5 {
        flex: 0 0 100%;
    }

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-offset {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .form-container {
        margin: 0 auto;
    }

    .intro-narrow {
        margin: 0 auto;
    }
}