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

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #fbbf24;
    background-color: rgba(251, 191, 36, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

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

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

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

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #1f2937;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
}

.intro-narrative {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

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

.intro-narrative h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.intro-narrative p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4b5563;
}

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.split-content-reverse {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4b5563;
}

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

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

.challenge-list {
    list-style: none;
    margin: 1.5rem 0;
}

.challenge-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
}

.challenge-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #eff6ff;
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e40af;
}

.reference-inline {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-left: 4px solid #3b82f6;
    font-size: 0.9rem;
}

.reference-inline a {
    color: #2563eb;
    text-decoration: none;
}

.reference-inline a:hover {
    text-decoration: underline;
}

.trust-building {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.full-width-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111827;
}

.trust-card p {
    font-size: 1rem;
    color: #6b7280;
}

.testimonials-flow {
    padding: 5rem 2rem;
    background-color: #fef3c7;
}

.testimonials-flow h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #78350f;
    text-align: center;
}

.testimonial-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #78350f;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.offset-image {
    flex: 0 0 45%;
    background-color: #e5e7eb;
}

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

.offset-text {
    flex: 1;
}

.offset-text h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

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

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.product-showcase {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
}

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

.showcase-container h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #111827;
}

.showcase-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 4rem;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.product-card {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #e5e7eb;
}

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

.product-card p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #059669;
    margin: 0 1.5rem 1.5rem;
}

.product-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #111827;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-select:hover {
    background-color: #374151;
}

.cta-primary {
    padding: 6rem 2rem;
    background-color: #1e293b;
    color: #ffffff;
}

.cta-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-primary p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

.order-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    color: #111827;
}

.form-notice {
    padding: 1.5rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    font-size: 1rem;
    color: #78350f;
    border-radius: 4px;
}

.form-fields {
    margin-top: 1.5rem;
}

.selected-product-display {
    padding: 1.5rem;
    background-color: #f0fdf4;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.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 textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #059669;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #047857;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #fef2f2;
}

.disclaimer-box {
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #dc2626;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #991b1b;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
}

.cta-secondary {
    padding: 5rem 2rem;
    background-color: #f3f4f6;
    text-align: center;
}

.cta-secondary h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-secondary p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1f2937;
    text-decoration: none;
    border: 2px solid #1f2937;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #1f2937;
    color: #ffffff;
}

.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fbbf24;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

.references-list {
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    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;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: #d1d5db;
    border: 2px solid #6b7280;
}

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

.page-header {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    text-align: center;
}

.header-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4b5563;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.approach-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 300px;
}

.approach-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: #e5e7eb;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.approach-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

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

.values-list {
    list-style: none;
    margin: 1.5rem 0;
}

.values-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.5rem;
}

.team-approach {
    padding: 5rem 2rem;
    background-color: #f3f4f6;
}

.team-approach h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.team-approach p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.process-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.process-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #374151;
}

.services-main {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.service-detail {
    margin-bottom: 5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail img {
    flex: 0 0 45%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e5e7eb;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

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

.service-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #6b7280;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin: 1.5rem 0;
}

.service-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #111827;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #374151;
}

.services-cta {
    padding: 4rem 2rem;
    background-color: #f3f4f6;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.contact-main {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.contact-info-box {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

.contact-item p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

.contact-note {
    padding: 2rem;
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
}

.contact-note h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.contact-note p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-note a {
    color: #2563eb;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-main {
    padding: 6rem 2rem;
    background-color: #f9fafb;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-message {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
}

.thanks-next-steps {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
}

.thanks-info {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-updated {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-container li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-container a {
    color: #2563eb;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-table thead {
    background-color: #f3f4f6;
}

.legal-table th,
.legal-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d1d5db;
}

.legal-table th {
    font-weight: 600;
    color: #374151;
}

.legal-table td {
    color: #4b5563;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .split-content,
    .split-content-reverse,
    .offset-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-detail {
        flex-direction: column !important;
    }

    .service-detail img {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-button-secondary {
        margin-left: 0;
    }
}
