* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.visible {
    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: #7fbc8c;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #7fbc8c;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #6ba877;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #7fbc8c;
}

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

.hero-section {
    margin-top: 60px;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(127, 188, 140, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
}

.story-intro {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.problem-section {
    padding: 100px 20px;
}

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

.split-image {
    flex: 1;
    background: #ecf0f1;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.insight-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.full-width-content {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #7fbc8c;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #7fbc8c;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-flow {
    padding: 100px 20px;
    background: #ecf0f1;
}

.testimonial-large {
    border-left: 5px solid #7fbc8c;
    padding-left: 40px;
    font-style: italic;
}

.testimonial-large p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #34495e;
}

.testimonial-large cite {
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 20px;
}

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

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

.benefits-asymmetric {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.benefit-main {
    flex: 1.2;
}

.benefit-main img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    object-fit: cover;
}

.benefit-main h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.benefit-main p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.benefit-secondary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 4px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.trust-building {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-element {
    flex: 1;
    min-width: 300px;
}

.trust-image-wrapper {
    margin-bottom: 20px;
    background: #dfe6e9;
}

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

.trust-element h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-element p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.services-pricing {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.product-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-card:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    background: #ecf0f1;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-info > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7fbc8c;
    font-weight: bold;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #7fbc8c;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 32px;
    background: #7fbc8c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #6ba877;
    transform: translateY(-2px);
}

.cta-form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    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: #7fbc8c;
}

.submit-btn {
    padding: 16px 40px;
    background: #7fbc8c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #7fbc8c;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: #7fbc8c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

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

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

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

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

    .product-card {
        flex-direction: column !important;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

.contact-page {
    padding: 120px 20px 80px;
}

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

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

.contact-info-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-item {
    flex: 1;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #7fbc8c;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.about-page {
    padding: 120px 20px 80px;
}

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

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

.about-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 60px;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.services-page {
    padding: 120px 20px 80px;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-header p {
    font-size: 20px;
    line-height: 1.7;
    color: #7f8c8d;
}

.legal-page {
    padding: 120px 20px 80px;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

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

.thanks-page {
    padding: 120px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #7fbc8c;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 40px;
}

.thanks-content a {
    display: inline-block;
    padding: 14px 32px;
    background: #7fbc8c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #6ba877;
    transform: translateY(-2px);
}