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

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

.ad-disclosure {
    background-color: #FEF3C7;
    color: #92400E;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #FCD34D;
}

.main-nav {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF4500;
    text-decoration: none;
}

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

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

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

.hero-section {
    margin-bottom: 4rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 700px;
    background-color: #1F2937;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.intro-section {
    padding: 4rem 2rem;
    background-color: #F9FAFB;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.intro-section p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4B5563;
}

.problem-section {
    padding: 5rem 2rem;
    background-color: #FFFFFF;
}

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

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.split-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4B5563;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #6B7280;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #FF4500;
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

.insight-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1E3A8A 0%, #10B981 100%);
    color: #FFFFFF;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-section p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.citation {
    color: #FCD34D;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.25rem;
}

.citation:hover {
    text-decoration: underline;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #F9FAFB;
}

.container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.story-card {
    max-width: 600px;
    background-color: #FFFFFF;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FF4500;
}

.story-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.story-card p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4B5563;
}

.benefits-section {
    padding: 5rem 2rem;
    background-color: #FFFFFF;
}

.benefits-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1F2937;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #F9FAFB;
    border-radius: 8px;
    border-top: 3px solid #10B981;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.benefit-card p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #1F2937;
    color: #FFFFFF;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #FF4500;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #D1D5DB;
}

.products-intro {
    padding: 4rem 2rem 2rem;
    background-color: #F9FAFB;
}

.products-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.products-intro p {
    font-size: 1.125rem;
    color: #6B7280;
}

.products-section {
    padding: 2rem 2rem 5rem;
    background-color: #F9FAFB;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.product-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 250px;
    background-color: #E5E7EB;
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1F2937;
}

.product-card > p {
    font-size: 1rem;
    margin: 0 1.5rem 1rem;
    color: #6B7280;
}

.product-card ul {
    list-style: none;
    margin: 0 1.5rem 1.5rem;
}

.product-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4B5563;
    font-size: 0.95rem;
}

.product-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF4500;
    margin: 1rem 1.5rem;
}

.cta-button {
    background-color: #FF4500;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 1.5rem 1.5rem;
    border-radius: 4px;
}

.cta-button:hover {
    background-color: #E63E00;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #FFFFFF;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.form-section > div > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #6B7280;
}

.order-form {
    background-color: #F9FAFB;
    padding: 2.5rem;
    border-radius: 8px;
}

.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.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF4500;
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.submit-button {
    background-color: #1E3A8A;
    color: #FFFFFF;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1E40AF;
}

.guarantee-section {
    padding: 4rem 2rem;
    background-color: #F0FDF4;
    border-top: 3px solid #10B981;
}

.guarantee-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #065F46;
}

.guarantee-section p {
    font-size: 1.125rem;
    color: #047857;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #FEF3C7;
}

.disclaimer {
    font-size: 0.95rem;
    color: #78350F;
    line-height: 1.6;
    font-style: italic;
}

.references-section {
    padding: 3rem 2rem;
    background-color: #F9FAFB;
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.references-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    color: #4B5563;
}

.references-list a {
    color: #1E3A8A;
    text-decoration: none;
}

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

.main-footer {
    background-color: #1F2937;
    color: #D1D5DB;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF4500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1F2937;
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 200;
    display: none;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #10B981;
    color: #FFFFFF;
}

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

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

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

.page-header {
    background: linear-gradient(135deg, #1E3A8A 0%, #10B981 100%);
    color: #FFFFFF;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.5rem;
    font-weight: 300;
}

.about-content {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #4B5563;
    line-height: 1.7;
}

.about-image-section {
    padding: 0;
    background-color: #F9FAFB;
}

.about-image-container {
    width: 100%;
    height: 600px;
    background-color: #E5E7EB;
}

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

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

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F2937;
    text-align: center;
}

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #FF4500;
}

.value-item p {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
}

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

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F2937;
    text-align: center;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #F9FAFB;
    border-radius: 8px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: #FF4500;
    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.5rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.process-step p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

.team-philosophy {
    padding: 5rem 2rem;
    background-color: #1F2937;
    color: #FFFFFF;
}

.team-philosophy h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-philosophy p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #D1D5DB;
}

.services-intro {
    padding: 3rem 2rem;
    background-color: #FFFFFF;
}

.services-intro p {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
}

.services-detailed {
    padding: 2rem 2rem 5rem;
    background-color: #F9FAFB;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 5rem;
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image-large {
    flex: 0 0 45%;
    background-color: #E5E7EB;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF4500;
    margin-bottom: 1.5rem;
}

.service-info > p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-info h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

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

.service-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4B5563;
}

.service-info ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.sizing-guide {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

.sizing-guide h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.sizing-guide > p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.size-table-container {
    overflow-x: auto;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
}

.size-table th {
    background-color: #1F2937;
    color: #FFFFFF;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.size-table td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
}

.size-table tbody tr:hover {
    background-color: #F9FAFB;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    margin: 2rem 0;
}

.cookie-table th {
    background-color: #1F2937;
    color: #FFFFFF;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
}

.cookie-table tbody tr:hover {
    background-color: #F9FAFB;
}

.contact-note {
    margin-top: 3rem;
}

.contact-note h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.contact-note p {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
}

.contact-note a {
    color: #1E3A8A;
    text-decoration: underline;
}

.contact-page {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

.contact-page h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1F2937;
}

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

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.contact-item p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.6;
}

.thanks-page {
    padding: 5rem 2rem;
    background-color: #F9FAFB;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #10B981;
}

.thanks-content p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #4B5563;
}

.thanks-content .cta-button {
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1F2937;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #6B7280;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1rem 2rem;
    color: #6B7280;
}

.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

    .hero-content p {
        font-size: 1.125rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-image-large {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.125rem;
    }
}