/* Modern Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    min-height: 100vh;
}

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

/* Modern Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.header-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.header-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section - Completely New Design */
.hero {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fecaca 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-product-visual {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-product-visual:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.product-main-image {
    position: relative;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.product-main-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.product-badge-overlay {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #10b981 100%);
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-rating-large {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.stars-large {
    font-size: 1.75rem;
    color: var(--accent-color);
    letter-spacing: 3px;
}

.rating-details {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-dark);
}

.rating-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-total {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

.rating-sales {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-specs-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-highlight {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.spec-highlight:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.spec-highlight strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.spec-highlight span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

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

.btn-hero-primary {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-text-main {
    display: block;
    font-size: 1.25rem;
}

.btn-text-sub {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.trust-indicators-inline {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.trust-indicators-inline span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Trust Bar - New Design */
.trust-bar {
    background: var(--bg-light);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Product Details Section */
.product-details-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

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

.carousel-slides {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--bg-light);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    background: var(--bg-white);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 20px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    text-align: center;
    padding: 20px 0;
    background: var(--bg-white);
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: var(--border-color);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.product-details-content {
    padding: 1.5rem 0;
}

.details-header {
    margin-bottom: 2rem;
}

.details-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.certification-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #10b981 100%);
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.specs-table {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row.highlight {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 10px;
    margin: 0.5rem 0;
    border: 2px solid var(--primary-color);
}

.spec-label {
    font-weight: 600;
    color: var(--text-gray);
}

.spec-value {
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}

.key-features-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.key-features-box h4 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 800;
}

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

.features-list li {
    padding: 0.875rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

/* Key Benefits Section */
.key-benefits-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.benefits-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card-large {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 1.25rem;
}

.benefit-card-large h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 800;
}

.benefit-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.benefit-detail {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: var(--primary-dark);
    padding: 0.625rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.steps-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: var(--bg-light);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.step-number-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 0.875rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 800;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.comparison-table {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 1.75rem;
    font-weight: 800;
    font-size: 1.05rem;
}

.comparison-feature {
    font-weight: 800;
}

.comparison-product {
    text-align: center;
}

.comparison-product.highlight {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: var(--bg-light);
}

.comparison-value {
    text-align: center;
    font-weight: 600;
    color: var(--text-gray);
}

.comparison-value.highlight {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.faq-item-large {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item-large:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.faq-item-large h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
}

.faq-item-large p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.875rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-final {
    background: #fff;
    color: var(--primary-color);
    padding: 1.25rem 3.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.35rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-xl);
}

.btn-cta-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: var(--bg-light);
}

/* Contact Section */
.contact-section {
    padding: 4.5rem 0;
    background: var(--bg-white);
}

.contact-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 16px;
    min-width: 240px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.625rem;
    font-weight: 700;
}

.contact-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: #fff;
    padding: 4.5rem 0 2rem;
}

.footer-legal {
    margin-bottom: 2.5rem;
}

.footer-legal h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.legal-info {
    margin-bottom: 2rem;
}

.legal-info p {
    color: #d1d5db;
    margin-bottom: 0.625rem;
    line-height: 1.8;
}

.legal-info strong {
    color: #fff;
    font-weight: 600;
}

.legal-info a {
    color: #60a5fa;
    text-decoration: none;
}

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

.health-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.health-notice h4 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    font-weight: 800;
}

.health-notice p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-info-footer {
    margin-bottom: 2rem;
}

.contact-info-footer p {
    color: #d1d5db;
    margin-bottom: 0.625rem;
    line-height: 1.8;
}

.contact-info-footer strong {
    color: #fff;
    font-weight: 600;
}

.contact-info-footer a {
    color: #60a5fa;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
    min-height: 60vh;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1px;
}

.legal-page section {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-page section:last-child {
    border-bottom: none;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 800;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-bottom: 0.875rem;
    margin-top: 1.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-page ul li {
    margin-bottom: 0.625rem;
    color: var(--text-gray);
    line-height: 1.9;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.withdrawal-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
}

.withdrawal-form p {
    margin-bottom: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }
}

@media (max-width: 1024px) {
    .benefits-grid-large,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-specs-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1.25rem;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

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

    .hero-rating-large {
        flex-direction: column;
        text-align: center;
    }

    .rating-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .benefits-grid-large,
    .faq-grid,
    .trust-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .steps-visual {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .comparison-product,
    .comparison-value {
        text-align: left;
    }

    .carousel-slides {
        height: 400px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-page h1 {
        font-size: 2.25rem;
    }

    .hero-specs-highlight {
        grid-template-columns: 1fr;
    }
}

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
}

.product-main-image img,
.carousel-slide img {
    background-color: var(--bg-light);
    min-height: 200px;
    display: block;
}
