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

:root {
    --primary-color: #2563eb;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-color: #1e293b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --border-color: #e2e8f0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    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-actions {
    display: flex;
    gap: 1rem;
}

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

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

.btn-accept:hover {
    background: #1d4ed8;
}

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

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

.main-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

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

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-label {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-left {
    flex: 1;
    background: var(--light-bg);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-left p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    background-color: #e2e8f0;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

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

.intro-text p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-preview {
    background: var(--light-bg);
    padding: 6rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.services-intro p {
    font-size: 1.25rem;
    color: var(--gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e2e8f0;
}

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

.service-card p {
    color: var(--gray);
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.price {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.services-preview .cta-secondary {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary:hover {
    background: var(--text-color);
    transform: translateY(-2px);
}

.approach-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #e2e8f0;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.approach-content {
    flex: 1.2;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.approach-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.approach-step:last-child {
    border-bottom: none;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.approach-step p {
    color: var(--gray);
    font-size: 1.125rem;
}

.testimonials {
    background: var(--secondary-color);
    color: var(--white);
    padding: 6rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: rgba(255,255,255,0.7);
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.form-intro p {
    font-size: 1.125rem;
    color: var(--gray);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

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

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

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

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 1.5rem auto 0;
}

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

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

.content-page h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary-color);
}

.content-page h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

.content-page ul,
.content-page ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--gray);
}

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

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

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

.thanks-container {
    max-width: 700px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

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

.thanks-container p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

@media (max-width: 968px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .main-nav.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-left h1 {
        font-size: 2rem;
    }

    .intro-offset,
    .approach-split {
        flex-direction: column;
        gap: 2rem;
    }

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

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

@media (max-width: 640px) {
    .hero-left {
        padding: 2rem;
    }

    .hero-left h1 {
        font-size: 1.75rem;
    }

    .intro-text h2,
    .approach-content h2,
    .services-intro h2 {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 2rem;
    }

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