/* Reset and Base Styles */
* {
    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: #333;
    background-color: #fff;
}

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

.icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 251, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #0D94FB;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0D94FB;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #0D94FB;
    color: white;
    transform: translateY(-2px);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e1f5fe 50%, #e3f2fd 100%);
    padding: 4rem 1rem 2rem;
    text-align: center;
}

.header-content {
    max-width: 48rem;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #012652;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb a {
    color: #0D94FB;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.separator {
    color: #94a3b8;
}

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, #f8fafc 0%, #e1f5fe 50%, #e3f2fd 100%);
    box-shadow: 0 2px 4px rgba(1, 38, 82, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #012652;
    text-decoration: none;
    gap: 0.5rem;
}

.logo .icon {
    color: #0D94FB;
}

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

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0D94FB;
    background-color: #e3f2fd;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(13, 148, 251, 0.1);
    border-radius: 50%;
    color: #0D94FB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0D94FB;
    color: white;
    transform: translateY(-2px);
}

.social-link .icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e1f5fe 50%, #e3f2fd 100%);
    padding: 4rem 1rem;
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background-color: #e3f2fd;
    color: #012652;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #0D94FB;
}

.trust-badge .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #012652;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #0D94FB;
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

/* Bonus Offer Badge */
.bonus-offer-badge {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
    }
    to {
        box-shadow: 0 6px 20px rgba(0, 184, 148, 0.5);
    }
}

/* Product Bundle Info */
.product-bundle-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-bundle-info h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.bundle-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.bundle-item.bonus {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.bundle-item .icon {
    width: 16px;
    height: 16px;
    color: #00b894;
}

.bundle-item.bonus .icon {
    color: #ffc107;
}

.bonus-offer-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    margin: 20px 0;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.bonus-offer-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

@keyframes glow {
    from {
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    }
    to {
        box-shadow: 0 6px 30px rgba(76, 175, 80, 0.6);
    }
}

.product-bundle-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    border: 2px solid #e9ecef;
}

.product-bundle-info h3 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 700;
}

.bundle-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.bundle-item.bonus {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    padding: 12px;
    border-radius: 8px;
}

.bundle-item.bonus:hover {
    background: linear-gradient(135deg, #db2777, #be185d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.bundle-item .icon {
    width: 20px;
    height: 20px;
    color: #27ae60;
    flex-shrink: 0;
}

.bundle-item.bonus .icon {
    color: #e67e22;
}

.bundle-item span {
    font-size: 0.95rem;
    color: #2c3e50;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-image {
    margin: 3rem auto;
    max-width: 64rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(1, 38, 82, 0.25);
}

.hero-image video {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(1, 38, 82, 0.25);
}

.hero-cta-section {
    margin-top: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 15px 25px -5px rgba(1, 38, 82, 0.2), 0 0 0 3px rgba(13, 148, 251, 0.1);
    max-width: 28rem;
    margin: 0 auto 2rem;
    border: 3px solid #0D94FB;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0D94FB, #012652, #0D94FB);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.social-proof-badge {
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.875rem;
    font-weight: 700;
    color: #012652;
    margin-bottom: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.25rem;
}

.new-price {
    color: #0D94FB;
    margin-left: 0.5rem;
}

.savings {
    color: #0D94FB;
    font-weight: 600;
}

.cta-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.cta-button form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-button:hover {
    transform: scale(1.05);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #475569;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trust-item .icon {
    width: 1rem;
    height: 1rem;
}

.trust-item:first-child .icon {
    color: #0D94FB;
}

.trust-item:last-child .icon {
    color: #012652;
}

.quick-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #374151;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.benefit-item .icon {
    color: #0D94FB;
}

.benefit-item .emoji {
    font-size: 1.5rem;
}

.benefit-item:last-child .icon {
    color: #012652;
}

/* Problem Section */
.problem-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #012652;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    transition: box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid #e3f2fd;
}

.problem-card:hover {
    box-shadow: 0 10px 15px -3px rgba(1, 38, 82, 0.1);
    border-color: #0D94FB;
}

.problem-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.6;
}

.problem-result {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fef2f2;
    border-radius: 0.5rem;
    border-left: 4px solid #0D94FB;
}

.problem-result p {
    font-size: 1.125rem;
    color: #374151;
}

/* Solution Section */
.solution-section {
    padding: 4rem 1rem;
    background-color: white;
}

.solution-section .highlight {
    color: #0D94FB;
}

.feature-image {
    margin: 3rem auto;
    max-width: 48rem;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(1, 38, 82, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e3f2fd;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: #0D94FB;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    background-color: #e3f2fd;
}

.benefit-icon {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: #0D94FB;
}

.benefit-card h3 {
    font-weight: 700;
    color: #012652;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #374151;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(45deg, #e3f2fd, #f8fafc);
    border-radius: 1rem;
    border: 2px solid #0D94FB;
}

.cta-button-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button-secondary form {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8fafc 100%);
}

.highlight-blue {
    color: #0D94FB;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(1, 38, 82, 0.1);
    transition: box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid;
}

.step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(1, 38, 82, 0.1);
}

.step-blue {
    border-color: #e3f2fd;
}

.step-green {
    border-color: #e3f2fd;
}

.step-orange {
    border-color: #e3f2fd;
}

.step-number {
    background-color: #0D94FB;
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-green .step-number {
    background-color: #012652;
}

.step-orange .step-number {
    background-color: #0D94FB;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    width: 3rem;
    height: 3rem;
    color: #0D94FB;
}

.step-green .step-icon svg {
    color: #012652;
}

.step-orange .step-icon svg {
    color: #0D94FB;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #012652;
    margin-bottom: 1rem;
}

.step-card p {
    color: #475569;
    line-height: 1.6;
}

.time-callout {
    background: linear-gradient(to right, #e3f2fd, #f8fafc);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #0D94FB;
}

.time-title {
    font-size: 1.125rem;
    color: #012652;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.time-description {
    color: #475569;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    transition: box-shadow 0.3s ease;
    border: 2px solid #e3f2fd;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(1, 38, 82, 0.1);
    border-color: #0D94FB;
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.star {
    color: #0D94FB;
    font-size: 1.25rem;
}

.star.large {
    font-size: 2rem;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #e3f2fd;
    padding-top: 1rem;
}

.testimonial-card h3.author-name {
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.author-city {
    color: #475569;
    font-size: 0.875rem;
}

.author-result {
    color: #0D94FB;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.rating-summary {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(1, 38, 82, 0.1);
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #e3f2fd;
}

.rating-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #012652;
}

.rating-text {
    color: #475569;
    margin-bottom: 0.5rem;
}

.rating-recommend {
    font-size: 0.875rem;
    color: #0D94FB;
    font-weight: 600;
}

/* Why Act Now Section */
.why-act-now-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #012652 0%, #0D94FB 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-act-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.why-act-now-content {
    position: relative;
    z-index: 2;
}

.why-act-now-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.why-act-now-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.urgency-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.urgency-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.urgency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.urgency-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.urgency-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.urgency-highlight {
    color: #FFD700;
    font-weight: 700;
}

.why-act-now-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.why-act-now-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.why-act-now-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.why-act-now-cta form {
    display: flex;
    justify-content: center;
}

/* What's Included Section */
.whats-included-section {
    padding: 4rem 1rem;
    background-color: white;
}

.showcase-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.showcase-item {
    text-align: center;
}

.showcase-item img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    margin-bottom: 1rem;
    border: 2px solid #e3f2fd;
}

.showcase-item p {
    color: #475569;
    font-size: 0.875rem;
}

.included-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.items-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 2px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.included-item:hover {
    border-color: #0D94FB;
}

.item-icon {
    font-size: 1.875rem;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-name {
    color: #012652;
    font-weight: 600;
}

.item-value {
    color: #0D94FB;
    font-size: 0.875rem;
}

.value-summary {
    background: linear-gradient(to right, #e3f2fd, #f8fafc);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid #0D94FB;
    margin-bottom: 2rem;
    text-align: center;
}

.total-value {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 1rem;
}

.crossed-out {
    text-decoration: line-through;
    color: #94a3b8;
}

.your-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0D94FB;
    margin-bottom: 0.5rem;
}

.savings {
    font-size: 1.25rem;
    color: #012652;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-points {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #475569;
}

.final-cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.final-cta-button form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.guarantee-text {
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee-text .icon {
    color: #0D94FB;
}


/* FAQ Section */
.faq-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e3f2fd;
    background: white;
    color: #475569;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: #0D94FB;
    color: white;
    border-color: #0D94FB;
}

.faq-search {
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box .icon {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    z-index: 1;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid #e3f2fd;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #0D94FB;
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    margin-bottom: 1rem;
    border: 2px solid #e3f2fd;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: #012652;
}

.faq-question:hover {
    background-color: #e3f2fd;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0D94FB;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #374151;
    line-height: 1.6;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    border: 2px solid #e3f2fd;
}

.faq-contact h3 {
    color: #012652;
    margin-bottom: 1rem;
}

.faq-contact p {
    color: #475569;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #012652 0%, #0D94FB 100%);
    color: white;
}

.section-title.white {
    color: white;
}

.final-image {
    margin: 2rem auto;
    max-width: 32rem;
}

.final-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

/* Yoga Cards Carousel */
.yoga-cards-carousel {
    margin: 2rem auto;
    max-width: 48rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.875rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.carousel-btn .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #012652;
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Carousel Auto-play Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide.active {
    animation: slideIn 0.5s ease-out;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #64748b;
    font-weight: 500;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.breadcrumb-link:hover {
    color: #7c3aed;
    background-color: rgba(124, 58, 237, 0.1);
}

.breadcrumb-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.375rem;
}

.breadcrumb-item:last-child .breadcrumb-link {
    color: #1e293b;
    font-weight: 500;
    cursor: default;
    pointer-events: none;
}

/* Inline Links */
.inline-link {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.inline-link:hover {
    color: #5b21b6;
    border-bottom-color: #7c3aed;
}

/* Testimonial Links */
.testimonial-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #7c3aed;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.testimonial-link:hover {
    color: #5b21b6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .breadcrumb-icon {
        width: 0.875rem;
        height: 0.875rem;
    }

    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .carousel-btn .icon {
        width: 1rem;
        height: 1rem;
    }
    
    .carousel-btn-prev {
        left: 0.5rem;
    }
    
    .carousel-btn-next {
        right: 0.5rem;
    }
    
    .indicator {
        width: 0.625rem;
        height: 0.625rem;
    }
}

.final-cta-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.final-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.final-benefit {
    text-align: center;
}

.final-benefit .icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: white;
}

.final-benefit h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.final-benefit p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.guarantee-box {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.guarantee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.guarantee-header .icon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.75rem;
    color: white;
}

.guarantee-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.guarantee-box .guarantee-text {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.guarantee-points {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
}

.guarantee-points p {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.final-main-cta {
    display: flex;
    color: #012652;
    align-items: center;
    margin-bottom: 2rem;
}

.final-main-cta form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-methods .icon {
    width: 2rem;
    height: 2rem;
}

.final-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.final-trust .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.final-message {
    font-size: 1.125rem;
    opacity: 0.9;
    text-align: center;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #012652, #0D94FB);
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(1, 38, 82, 0.1);
    z-index: 50;
    display: none;
    border-top: 3px solid #0D94FB;
}

.mobile-sticky-cta button {
    display: none;
    color: #012652;
}

.mobile-payment-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-payment-button form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.mobile-price {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Footer */
.main-footer {
    background-color: #012652;
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer styling updates */
.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #cbd5e1;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(13, 148, 251, 0.2);
    color: #0D94FB;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(13, 148, 251, 0.3);
}

/* About Page Styles */
.story-section {
    padding: 4rem 1rem;
    background-color: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

.story-text h2 {
    color: #012652;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-text .lead {
    font-size: 1.25rem;
    color: #0D94FB;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-text p {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(1, 38, 82, 0.1);
}

.mission-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    text-align: center;
    border: 2px solid #e3f2fd;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: #0D94FB;
    transform: translateY(-5px);
}

.mission-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon .icon {
    width: 3rem;
    height: 3rem;
    color: #0D94FB;
}

.mission-card h3 {
    color: #012652;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #374151;
    line-height: 1.6;
}

.difference-section {
    padding: 4rem 1rem;
    background-color: white;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.difference-item {
    padding: 2rem;
    border-left: 4px solid #0D94FB;
    background-color: #f8fafc;
    border-radius: 0 0.5rem 0.5rem 0;
}

.difference-number {
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.difference-item h3 {
    color: #012652;
    margin-bottom: 1rem;
}

.difference-item p {
    color: #374151;
    line-height: 1.6;
}

.impact-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8fafc 100%);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0D94FB;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #374151;
    font-weight: 600;
}

.impact-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border-left: 4px solid #0D94FB;
}

.testimonial-item p {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-item cite {
    color: #0D94FB;
    font-weight: 600;
    font-style: normal;
}

.team-section {
    padding: 4rem 1rem;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 0.75rem;
    border: 2px solid #e3f2fd;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #0D94FB;
    transform: translateY(-5px);
}

.member-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(45deg, #0D94FB, #012652);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.team-member h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #0D94FB;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #374151;
    line-height: 1.6;
}

.about-cta-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #012652 0%, #0D94FB 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Products Page Styles */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.filter-group select {
    padding: 0.5rem;
    border: 2px solid #e3f2fd;
    border-radius: 0.5rem;
    background: white;
    color: #374151;
    min-width: 150px;
}

.filter-group select:focus {
    outline: none;
    border-color: #0D94FB;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    overflow: hidden;
    border: 2px solid #e3f2fd;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    border-color: #0D94FB;
    box-shadow: 0 10px 15px -3px rgba(1, 38, 82, 0.1);
}

.product-card.featured {
    border-color: #0D94FB;
    box-shadow: 0 10px 15px -3px rgba(13, 148, 251, 0.2);
}

.product-card.coming-soon {
    opacity: 0.8;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.coming-soon-badge {
    background: linear-gradient(45deg, #94a3b8, #64748b);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 38, 82, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #012652;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #0D94FB;
    color: white;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image .icon {
    width: 4rem;
    height: 4rem;
    color: #94a3b8;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    color: #0D94FB;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-content h3 {
    color: #012652;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-description {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.feature-item .icon {
    width: 1rem;
    height: 1rem;
    color: #0D94FB;
    flex-shrink: 0;
}

.product-pricing {
    margin-bottom: 1.5rem;
}

.price-section {
    text-align: center;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
}

.current-price {
    color: #0D94FB;
    font-size: 2rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.savings {
    color: #012652;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-cta form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-guarantees {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.guarantee-item .icon {
    width: 1rem;
    height: 1rem;
    color: #0D94FB;
    flex-shrink: 0;
}

.coming-soon-price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D94FB;
    margin-bottom: 1rem;
}

.notify-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #e2e8f0;
    color: #64748b;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-info-section {
    margin-top: 3rem;
    text-align: center;
}

.product-info-section h2 {
    color: #012652;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.info-card:hover {
    border-color: #0D94FB;
}

.info-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #0D94FB;
}

.info-card h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #475569;
    font-size: 0.875rem;
}

.newsletter-section {
    padding: 3rem 1rem;
    background: linear-gradient(45deg, #e3f2fd, #f8fafc);
}

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

.newsletter-text h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: #475569;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e3f2fd;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #0D94FB;
}

.newsletter-form button {
    background: #0D94FB;
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #012652;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    text-align: center;
    border: 2px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.contact-card:hover {
    border-color: #0D94FB;
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon .icon {
    width: 3rem;
    height: 3rem;
    color: #0D94FB;
}

.contact-card h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #475569;
    margin-bottom: 1rem;
}

.contact-link {
    color: #0D94FB;
    font-weight: 600;
    text-decoration: none;
}

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

.form-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
}

.form-card h3 {
    color: #012652;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e3f2fd;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: scale(1.05);
}

.support-section {
    padding: 4rem 1rem;
    background-color: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Support section heading improvements */
.support-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.support-item {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.support-item:hover {
    border-color: #0D94FB;
}

.support-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.support-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #0D94FB;
}

.support-item h4 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.support-item p {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.support-link {
    color: #0D94FB;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

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

.faq-preview-section {
    padding: 4rem 1rem;
    background: linear-gradient(45deg, #e3f2fd, #f8fafc);
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.faq-preview-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
}

/* FAQ preview heading improvements */
.faq-preview-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.faq-preview-item h4 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.faq-preview-item p {
    color: #374151;
    font-size: 0.875rem;
}

.faq-cta {
    text-align: center;
}

/* Legal Pages Styles */
.legal-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.last-updated {
    color: #475569;
    font-style: italic;
}

.legal-content {
    max-width: 64rem;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: #012652;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e3f2fd;
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: #0D94FB;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.terms-section p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul {
    color: #374151;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.business-info {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0D94FB;
}

.contact-info {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e3f2fd;
}

.important-note {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
    margin: 1rem 0;
}

.important-note h3 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.important-note p {
    color: #92400e;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    text-align: center;
    border: 2px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.contact-card:hover {
    border-color: #0D94FB;
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon .icon {
    width: 3rem;
    height: 3rem;
    color: #0D94FB;
}

.contact-card h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #475569;
    margin-bottom: 1rem;
}

.contact-link {
    color: #0D94FB;
    font-weight: 600;
    text-decoration: none;
}

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

.form-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
}

.form-card h3 {
    color: #012652;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e3f2fd;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
}

.support-info {
    margin-top: 3rem;
    text-align: center;
}

.support-info h3 {
    color: #012652;
    margin-bottom: 2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.support-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
}

.support-item h4 {
    color: #0D94FB;
    margin-bottom: 0.5rem;
}

.support-item p {
    color: #374151;
    font-size: 0.875rem;
}

/* Products Page Styles */
.products-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    overflow: hidden;
    border: 2px solid #e3f2fd;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    border-color: #0D94FB;
    box-shadow: 0 10px 15px -3px rgba(1, 38, 82, 0.1);
}

.product-card.featured {
    border-color: #0D94FB;
    box-shadow: 0 10px 15px -3px rgba(13, 148, 251, 0.2);
}

.product-card.coming-soon {
    opacity: 0.8;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.coming-soon-badge {
    background: linear-gradient(45deg, #94a3b8, #64748b);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image .icon {
    width: 4rem;
    height: 4rem;
    color: #94a3b8;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: #012652;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-description {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.feature-item .icon {
    width: 1rem;
    height: 1rem;
    color: #0D94FB;
    flex-shrink: 0;
}

.product-pricing {
    margin-bottom: 1.5rem;
}

.price-section {
    text-align: center;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
}

.current-price {
    color: #0D94FB;
    font-size: 2rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.savings {
    color: #012652;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-cta form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-guarantees {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.guarantee-item .icon {
    width: 1rem;
    height: 1rem;
    color: #0D94FB;
    flex-shrink: 0;
}

.coming-soon-price {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D94FB;
    margin-bottom: 1rem;
}

.notify-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #e2e8f0;
    color: #64748b;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: not-allowed;
}

.product-info-section {
    margin-top: 3rem;
    text-align: center;
}

.product-info-section h2 {
    color: #012652;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(1, 38, 82, 0.1);
    border: 2px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.info-card:hover {
    border-color: #0D94FB;
}

.info-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #0D94FB;
}

.info-card h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #475569;
    font-size: 0.875rem;
}

/* Refund Page Specific Styles */
.refund-intro {
    margin-bottom: 2rem;
}

.guarantee-highlight {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #e3f2fd, #f8fafc);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid #0D94FB;
    gap: 1.5rem;
}

.guarantee-icon .icon {
    width: 4rem;
    height: 4rem;
    color: #0D94FB;
}

.guarantee-text h2 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.refund-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e3f2fd;
}

.step-number {
    background-color: #0D94FB;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #374151;
    font-size: 0.875rem;
}

.timeline-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0D94FB;
}

.timeline-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #374151;
}

.total-timeline {
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.total-timeline h3 {
    margin-bottom: 0.5rem;
}

.refund-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.method-item {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e3f2fd;
    text-align: center;
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.method-content h3 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #374151;
    margin-bottom: 0.5rem;
}

.processing-time {
    color: #0D94FB;
    font-weight: 600;
    font-size: 0.875rem;
}

.email-template {
    margin-top: 1.5rem;
}

.template-box {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e3f2fd;
    font-family: monospace;
    font-size: 0.875rem;
    color: #374151;
}

/* Delivery Page Specific Styles */
.delivery-intro {
    margin-bottom: 2rem;
}

.delivery-highlight {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #e3f2fd, #f8fafc);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid #0D94FB;
    gap: 1.5rem;
}

.delivery-icon .icon {
    width: 4rem;
    height: 4rem;
    color: #0D94FB;
}

.delivery-text h2 {
    color: #012652;
    margin-bottom: 0.5rem;
}

.delivery-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.delivery-summary {
    background: linear-gradient(45deg, #0D94FB, #012652);
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.delivery-summary h3 {
    margin-bottom: 0.5rem;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.issue-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.issue-item {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e3f2fd;
}

.issue-item h4 {
    color: #012652;
    margin-bottom: 1rem;
}

.issue-item ul {
    margin-left: 1rem;
}

.issue-item li {
    color: #374151;
    margin-bottom: 0.5rem;
}

.guarantee-box {
    background: linear-gradient(45deg, #e3f2fd, #f8fafc);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid #0D94FB;
    margin: 1.5rem 0;
}

.guarantee-box h3 {
    color: #012652;
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee-box ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-left: 0;
    list-style: none;
}

.guarantee-box li {
    color: #374151;
    font-weight: 600;
}

.support-info {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #e3f2fd;
    margin: 1.5rem 0;
}

.support-info h3 {
    color: #012652;
    margin-bottom: 1rem;
}

/* Privacy Page Specific Styles */
.privacy-intro {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0D94FB;
    margin-bottom: 2rem;
}

.privacy-intro p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .quick-benefits {
        flex-direction: column;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timer-box {
        min-width: 4rem;
        padding: 0.75rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .final-benefits {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        font-size: 0.875rem;
    }
    
    .final-trust {
        font-size: 1rem;
        flex-wrap: wrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .faq-categories {
        justify-content: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .guarantee-highlight,
    .delivery-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .refund-steps,
    .delivery-timeline,
    .download-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-card h3.author-name {
        font-size: 0.9rem;
    }
    
    .support-item h3 {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .quick-benefits {
        flex-direction: row;
        justify-content: center;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .included-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}