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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #5d6d7e;
}

.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #27ae60;
}

.hero-full {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
}

.story-intro {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5d6d7e;
}

.insight-block {
    padding: 120px 40px;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 400px;
    background: #e8f5e9;
}

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

.split-text {
    flex: 1;
    min-width: 400px;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5d6d7e;
    line-height: 1.7;
}

.trust-builder {
    padding: 100px 40px;
    background: #ffffff;
}

.trust-builder h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #27ae60;
    text-align: center;
}

.trust-builder p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.trust-builder a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.trust-builder a:hover {
    text-decoration: underline;
}

.visual-contrast {
    height: 500px;
}

.image-full {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #c8e6c9;
}

.benefits-reveal {
    padding: 120px 40px;
    background: #f1f8f4;
}

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

.benefits-reveal h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.benefit-card p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 80px 40px;
    background: #27ae60;
}

.testimonial-inline blockquote {
    border-left: none;
    padding: 0;
    margin: 0;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 18px;
    color: #d5f4e6;
    font-style: normal;
}

.approach-detail {
    padding: 120px 40px;
    background: #ffffff;
}

.approach-detail h2 {
    font-size: 48px;
    margin-bottom: 70px;
    text-align: center;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: #e8f5e9;
    line-height: 1;
    min-width: 120px;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #27ae60;
}

.step-content p {
    font-size: 18px;
    color: #5d6d7e;
    line-height: 1.7;
}

.pricing-reveal {
    padding: 120px 40px;
    background: #f8f9fa;
}

.pricing-reveal h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.featured {
    border: 2px solid #27ae60;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #27ae60;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.price-card p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.btn-select {
    padding: 14px 28px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #229954;
}

.contact-form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.contact-form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.contact-form-section > p {
    text-align: center;
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #ecf0f1;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #27ae60;
}

.references li {
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 20px;
    }

    .nav-links {
        width: 100%;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-layout {
        gap: 40px;
    }

    .split-image,
    .split-text {
        min-width: 100%;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-card {
        min-width: 100%;
    }

    .step-item {
        flex-direction: column;
        gap: 20px;
    }

    .step-number {
        font-size: 48px;
    }

    .pricing-cards {
        gap: 20px;
    }

    .price-card {
        min-width: 100%;
    }

    .footer-container {
        gap: 40px;
    }
}

.services-hero {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    padding: 80px 40px;
}

.services-grid h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    flex: 0 1 calc(50% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.about-hero {
    padding: 100px 40px;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #5d6d7e;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: 80px 40px;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #27ae60;
}

.about-section p {
    font-size: 18px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin: 40px 0;
    background-color: #e8f5e9;
}

.contact-hero {
    padding: 80px 40px;
    background: #27ae60;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
}

.contact-content {
    padding: 80px 40px;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

.info-block p {
    font-size: 18px;
    color: #5d6d7e;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #27ae60;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
    padding: 60px 40px;
}

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

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-service {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #ffffff;
    color: #27ae60;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #ecf0f1;
}