/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

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

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    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 1 60%;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #10b981;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #059669;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-alt:hover {
    background-color: #374151;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-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: #1f2937;
}

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #10b981;
}

.ad-label {
    font-size: 0.8rem;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    border-radius: 4px;
    font-weight: 400;
}

/* Hero Split Section */
.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 45%;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 800;
}

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

.hero-right {
    flex: 1 1 45%;
    min-width: 300px;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 500px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #10b981;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #10b981;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #10b981;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #10b981;
    color: #ffffff;
}

/* Intro Section */
.intro-section {
    background-color: #f9fafb;
    padding: 4rem 2rem;
}

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

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Split Alternate Section */
.split-alternate {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.split-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.split-row:last-child {
    margin-bottom: 0;
}

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

.split-image {
    flex: 1 1 45%;
    min-width: 300px;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 400px;
}

.split-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.split-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.split-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-reveal {
    background-color: #f9fafb;
    padding: 5rem 2rem;
}

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

.pricing-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 800;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #10b981;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.pricing-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.875rem;
    background-color: #10b981;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #059669;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-info {
    flex: 1 1 40%;
    min-width: 300px;
}

.form-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.form-info p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.form-container {
    flex: 1 1 50%;
    min-width: 300px;
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    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: #10b981;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #10b981;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Trust Section */
.trust-section {
    background-color: #f9fafb;
    padding: 4rem 2rem;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

.trust-item h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.trust-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #10b981;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Page */
.expertise-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.expertise-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    max-width: 500px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.expertise-card p {
    color: #4b5563;
    line-height: 1.6;
}

.values-section {
    background-color: #f9fafb;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    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.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.value-item p {
    color: #4b5563;
    line-height: 1.6;
}

.cta-section {
    background-color: #10b981;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #10b981;
}

.cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

/* Services Page */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-block {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1 1 40%;
    min-width: 300px;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 400px;
}

.service-details {
    flex: 1 1 55%;
    min-width: 300px;
}

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

.service-lead {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 500;
}

.service-details h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4b5563;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.5rem;
    line-height: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.price-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    color: #10b981;
    font-weight: 800;
}

.service-block.featured-service {
    background-color: #f0fdf4;
    padding: 3rem;
    border-radius: 12px;
}

.process-section {
    background-color: #f9fafb;
    padding: 5rem 2rem;
}

.process-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 700;
}

.process-step p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Contact Page */
.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 55%;
    min-width: 300px;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 600;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-visual {
    flex: 1 1 35%;
    min-width: 300px;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.faq-section {
    background-color: #f9fafb;
    padding: 4rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #111827;
    font-weight: 700;
}

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

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

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.35rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.thanks-content {
    text-align: left;
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.next-steps {
    margin-top: 2rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 2rem;
}

.legal-intro {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 500;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.legal-content a {
    color: #10b981;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #059669;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split,
    .split-row,
    .form-split,
    .contact-split,
    .service-block {
        flex-direction: column;
    }

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

    .hero-left h1,
    .page-hero h1,
    .thanks-section h1 {
        font-size: 2rem;
    }

    .pricing-grid,
    .trust-grid,
    .expertise-grid,
    .faq-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }

    .ad-label {
        width: 100%;
        text-align: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}