* {
    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: #333;
    background-color: #fafafa;
}

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.navigation {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f6f;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.hero {
    display: flex;
    min-height: 600px;
    background-color: #fff;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: #e8f1f3;
    position: relative;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #2c5f6f;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.story-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.story-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.story-card h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 28px;
    line-height: 1.3;
}

.story-card p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: #f5f9fa;
    padding: 40px 32px;
    border-radius: 10px;
    border-left: 4px solid #2c5f6f;
}

.insight-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

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

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

.trust-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-image {
    flex: 1;
    background-color: #e8f1f3;
    border-radius: 12px;
    overflow: hidden;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.benefit-list li {
    padding: 12px 0 12px 32px;
    font-size: 16px;
    color: #333;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f6f;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-section {
    padding: 80px 20px;
    background-color: #2c5f6f;
    color: #fff;
}

.testimonial-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 36px 28px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #d0e8ed;
}

.products-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

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

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.product-card {
    flex: 1;
    min-width: 320px;
    max-width: calc(50% - 16px);
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.product-image {
    height: 280px;
    background-color: #e8f1f3;
    overflow: hidden;
}

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

.product-content {
    padding: 32px 28px;
}

.product-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.product-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.product-features span {
    background-color: #f0f7f9;
    color: #2c5f6f;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

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

.select-product-btn {
    width: 100%;
    background-color: #2c5f6f;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 100%);
}

.cta-box {
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background-color: #fff;
    color: #2c5f6f;
    padding: 18px 44px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button-large:hover {
    background-color: #f0f7f9;
    transform: translateY(-3px);
}

.form-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.form-wrapper > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    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: #2c5f6f;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.checkbox-group a {
    color: #2c5f6f;
    text-decoration: underline;
}

.submit-button {
    background-color: #2c5f6f;
    color: #fff;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 40px;
    background-color: #fff;
    border-left: 4px solid #f0ad4e;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.references-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.references-section h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.references-list p {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.references-list a {
    color: #2c5f6f;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 24px 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.cookie-btn.accept {
    background-color: #2c5f6f;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #234a56;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

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

.cookie-link {
    color: #2c5f6f;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
    }

    .hero-image {
        height: 400px;
    }

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

    .product-card {
        max-width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

.page-header {
    background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.why-choose-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 260px;
    background-color: #fff;
    padding: 36px 28px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.benefit-card h3 {
    font-size: 22px;
    color: #2c5f6f;
    margin-bottom: 16px;
}

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

.about-content {
    padding: 80px 20px;
    background-color: #fff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e8f1f3;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #fff;
    padding: 36px 28px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-top: 4px solid #2c5f6f;
}

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

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

.mission-section {
    padding: 80px 20px;
    background-color: #fff;
}

.mission-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-image {
    flex: 1;
    background-color: #e8f1f3;
    border-radius: 12px;
    overflow: hidden;
}

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

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

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

.approach-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 40px 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5f6f;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.approach-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 260px;
    background-color: #f5f9fa;
    padding: 36px 28px;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

.contact-note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.contact-content-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.contact-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-benefits {
    margin-top: 32px;
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
}

.contact-benefits h3 {
    font-size: 20px;
    color: #2c5f6f;
    margin-bottom: 16px;
}

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

.contact-benefits ul li {
    padding: 8px 0 8px 28px;
    font-size: 15px;
    color: #333;
    position: relative;
}

.contact-benefits ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f6f;
    font-weight: 700;
}

.contact-visual {
    flex: 1;
    background-color: #e8f1f3;
    border-radius: 12px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 28px 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5f6f;
}

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

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

.legal-page {
    padding: 80px 20px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    color: #2c5f6f;
    margin-top: 28px;
    margin-bottom: 16px;
}

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

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

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

.legal-content a {
    color: #2c5f6f;
    text-decoration: underline;
}

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

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
    }

    .hero-image {
        height: 400px;
    }

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

    .product-card {
        max-width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .mission-content {
        flex-direction: column-reverse;
    }

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

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

    .nav-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .story-card {
        padding: 40px 30px;
    }

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

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

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

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

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

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

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