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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: -0.02em;
}

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

.main-nav a {
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #16a34a;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #94a3b8;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-text p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #16a34a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #15803d;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    overflow: hidden;
    background-color: #d1d5db;
}

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

.intro-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.intro-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.benefits-cards {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.benefits-cards h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #16a34a;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.process-split.reverse {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.process-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #16a34a;
    min-width: 3rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

.process-image {
    flex: 1;
    overflow: hidden;
    background-color: #d1d5db;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #f0fdf4;
}

.testimonials h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #16a34a;
}

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.form-intro p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-form {
    flex: 1;
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #334155;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #16a34a;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #16a34a;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #15803d;
    transform: translateY(-2px);
}

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #fef3c7;
}

.disclaimer-content {
    padding: 1.5rem;
    border-left: 4px solid #f59e0b;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.6;
}

.main-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #16a34a;
}

.footer-column p,
.footer-column a {
    display: block;
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #16a34a;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-accept {
    background-color: #16a34a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #15803d;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #64748b;
    color: #ffffff;
}

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

.page-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8fafc;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.page-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    overflow: hidden;
    background-color: #d1d5db;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

.values-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #16a34a;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
}

.experience-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-split.reverse {
    flex-direction: row-reverse;
}

.experience-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.experience-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.experience-content p,
.experience-content ul {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.experience-content ul {
    padding-left: 1.5rem;
}

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

.experience-image {
    flex: 1;
    overflow: hidden;
    background-color: #d1d5db;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technology-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #f0fdf4;
}

.technology-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.tech-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-details p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-details li {
    font-size: 0.98rem;
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.price-tag {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #16a34a;
}

.price-note {
    font-size: 0.9rem;
    color: #94a3b8;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #16a34a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #15803d;
    transform: translateY(-2px);
}

.pricing-note {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #f8fafc;
}

.note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.note-content p,
.note-content ul {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.note-content ul {
    padding-left: 1.5rem;
}

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

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    background-color: #d1d5db;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #16a34a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

.contact-secondary {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.secondary-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.secondary-content p,
.secondary-content ul {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.secondary-content ul {
    padding-left: 1.5rem;
}

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

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

.thanks-hero {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f0fdf4;
}

.thanks-content h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #16a34a;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-service {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #16a34a;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #16a34a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-back:hover {
    background-color: #15803d;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    overflow: hidden;
    background-color: #d1d5db;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-steps {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-box {
    flex: 1;
    min-width: 260px;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #16a34a;
}

.step-box p {
    color: #64748b;
    line-height: 1.6;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #334155;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #475569;
}

.legal-page p,
.legal-page ul {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-page ul {
    padding-left: 2rem;
}

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

.legal-page a {
    color: #16a34a;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #15803d;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .process-split,
    .about-split,
    .experience-split,
    .service-card-split,
    .contact-info-split,
    .form-split,
    .thanks-hero {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .process-split.reverse,
    .experience-split.reverse {
        flex-direction: column;
    }

    .hero-text,
    .intro-content,
    .process-content,
    .about-content,
    .experience-content,
    .service-details,
    .contact-details,
    .form-intro,
    .thanks-content {
        padding: 2.5rem 2rem;
    }

    .hero-image,
    .intro-image,
    .process-image,
    .about-image,
    .experience-image,
    .service-image,
    .contact-map,
    .thanks-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-text h1,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .cards-grid,
    .values-grid,
    .testimonials-grid,
    .faq-grid,
    .steps-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .service-details h2,
    .intro-content h2,
    .process-content h2,
    .about-content h2 {
        font-size: 1.7rem;
    }

    .price {
        font-size: 1.8rem;
    }
}