* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #2c5f8d;
}

.hero-section {
    position: relative;
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c5f8d;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.4;
}

.cta-button {
    background-color: #f59e42;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #e68a2e;
    transform: translateY(-2px);
}

.story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.inline-image {
    margin: 40px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #2c5f8d;
}

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

blockquote {
    background-color: #ffffff;
    border-left: 5px solid #2c5f8d;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

blockquote p {
    font-size: 20px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
}

cite {
    display: block;
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.problem-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
    color: #333;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e63946;
    font-size: 24px;
    font-weight: 700;
}

.split-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    background-color: #4a9d5f;
}

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

.insight-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.insight-section > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.insight-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.insight-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #4a9d5f;
}

.testimonial p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    color: #1a1a1a;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

.benefits-reveal {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefits-reveal h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.benefits-reveal > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #4a9d5f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.products-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.products-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.section-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

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

.product-card {
    display: flex;
    gap: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-card.featured {
    border: 3px solid #f59e42;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #f59e42;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
}

.product-image {
    flex: 0 0 400px;
    overflow: hidden;
    background-color: #2c5f8d;
}

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

.product-info {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-info > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-specs span {
    font-size: 14px;
    color: #666;
}

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

.select-product {
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-product:hover {
    background-color: #234a6d;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    background-color: #4a9d5f;
    color: #ffffff;
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

.submit-button:hover {
    background-color: #3d8450;
    transform: translateY(-2px);
}

.final-cta {
    padding: 80px 0;
    background-color: #2c5f8d;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 30px;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.btn-primary {
    background-color: #4a9d5f;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #3d8450;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

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

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

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

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

    .product-image {
        flex: 0 0 300px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

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

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

.page-header {
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.content-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.7;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 15px;
}

.contact-detail strong {
    display: block;
    font-size: 16px;
    color: #2c5f8d;
    margin-bottom: 5px;
}

.contact-detail span {
    font-size: 16px;
    color: #333;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2c5f8d;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9d5f;
    margin-top: 15px;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin: 40px 0;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 400px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #2c5f8d;
}

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

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 300px;
        width: 100%;
    }

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

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