/* General Styles */
:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #ec4899;
    --background-color: #f8fafc;
    --text-color: #1e293b;
    --card-bg: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    padding-top: 80px;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Banner Styles */
.hero-banner {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237c3aed' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* Product Review Styles */
.product-review {
    padding: 80px 0;
}

.review-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
}

.score-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.score {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.score-label {
    font-size: 14px;
    margin-top: 4px;
}

.product-details {
    padding: 30px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pros-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pros-list {
    list-style: none;
    padding-left: 0;
}

.pros-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
}

.pros-list li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.offer-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.discount-amount {
    font-size: 32px;
    font-weight: bold;
    display: block;
}

.discount-text {
    font-size: 16px;
}

.price-section {
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.5rem;
    margin-right: 15px;
}

.current-price {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    position: relative;
    transition: transform 0.3s ease;
}

.arrow-icon:before {
    content: '→';
    position: absolute;
    right: 0;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    70% { transform: scale(0.9); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-up {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.slide-in {
    animation: slideIn 1s ease forwards;
}

.slide-in-delay {
    animation: slideIn 1s ease 0.3s forwards;
    opacity: 0;
}

.bounce-in {
    animation: bounceIn 1s cubic-bezier(0.36, 0, 0.66, -0.56) forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-banner {
        padding: 80px 0;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .product-details,
    .offer-section {
        padding: 20px;
    }
    
    .score-badge {
        width: 80px;
        height: 80px;
    }
    
    .score {
        font-size: 24px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .discount-amount {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .product-image-container {
        min-height: 200px;
    }
}

/* Product Information Section Styles */
.product-info {
    background-color: var(--background-color);
}

.info-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.sub-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.ingredients-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.ingredient-item {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.ingredient-name {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ingredient-desc {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-text {
    font-weight: 500;
    color: var(--text-color);
}

/* Responsive adjustments for Product Info section */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 1.5rem;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem;
    }
}

/* Ingredients Detail Section Styles */
.ingredients-detail {
    background-color: var(--background-color);
}

.ingredients-detail-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.ingredients-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ingredient-detail-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ingredient-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ingredient-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.ingredient-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.ingredient-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
}

.ingredient-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.study-reference {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 20px;
    font-weight: 500;
}

/* Responsive adjustments for Ingredients Detail section */
@media (max-width: 991px) {
    .ingredients-detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .ingredient-detail-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ingredients-detail-card {
        padding: 1.5rem !important;
    }

    .ingredient-title {
        font-size: 1.3rem;
    }

    .ingredient-description {
        font-size: 0.95rem;
    }
}

/* Dual Image Section Styles */
.dual-image-section {
    background-color: var(--background-color);
}

.image-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-card:hover {
    transform: translateY(-10px);
}

.image-card img {
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for Dual Image section */
@media (max-width: 768px) {
    .image-card img {
        height: 150px;
    }
}

/* Scientific Evidence Section Styles */
.scientific-evidence {
    background-color: var(--background-color);
}

.evidence-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.science-symbol {
    font-size: 3rem;
    display: inline-block;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.research-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.research-note {
    color: #64748b;
    font-size: 1rem;
}

/* Responsive adjustments for Scientific Evidence section */
@media (max-width: 768px) {
    .evidence-card {
        padding: 1.5rem !important;
    }

    .research-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .science-symbol {
        font-size: 2.5rem;
        padding: 1rem;
    }
}

/* Customer Reviews Section Styles */
.customer-reviews {
    background-color: var(--background-color);
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.verified-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-content {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.review-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.review-date {
    color: #64748b;
    font-size: 0.9rem;
}

.slide-in-delay-2 {
    animation: slideIn 1s ease 0.6s forwards;
    opacity: 0;
}

/* Responsive adjustments for Reviews section */
@media (max-width: 991px) {
    .review-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .avatar-text {
        font-size: 1rem;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-content p {
        font-size: 0.95rem;
    }
}

/* Guarantee Section Styles */
.guarantee-section {
    background-color: var(--background-color);
}

.guarantee-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.shield-icon {
    font-size: 4rem;
    display: inline-block;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.guarantee-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.guarantee-badge .days {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.guarantee-badge .text {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 2rem auto;
}

.small-text {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive adjustments for Guarantee section */
@media (max-width: 768px) {
    .guarantee-card {
        padding: 1.5rem !important;
    }

    .shield-icon {
        font-size: 3rem;
        padding: 1.5rem;
    }

    .guarantee-badge {
        padding: 1rem 2rem;
    }

    .guarantee-badge .days {
        font-size: 2.5rem;
    }

    .guarantee-badge .text {
        font-size: 1rem;
    }

    .guarantee-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Authentic Purchase Section Styles */
.authentic-purchase {
    background-color: var(--background-color);
}

.authentic-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.verify-icon {
    font-size: 4rem;
    display: inline-block;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.warning-box {
    background: rgba(234, 179, 8, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.warning-icon {
    font-size: 1.5rem;
}

.warning-text {
    color: #854d0e;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.purchase-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 2rem auto;
}

.benefits-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.discount-alert {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    margin-top: 3rem;
}

.discount-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
}

.discount-amount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.discount-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.offer-text {
    font-size: 1.2rem;
    margin: 1.5rem 0;
}

.btn-primary .arrow-right {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-right {
    transform: translateX(5px);
}

/* Responsive adjustments for Authentic Purchase section */
@media (max-width: 768px) {
    .authentic-card {
        padding: 1.5rem !important;
    }

    .verify-icon {
        font-size: 3rem;
        padding: 1.5rem;
    }

    .warning-text {
        font-size: 1.1rem;
    }

    .purchase-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .benefit-item {
        padding: 0.8rem;
    }

    .discount-amount {
        font-size: 2rem;
    }

    .offer-text {
        font-size: 1.1rem;
    }
}

/* Disclaimer Section Styles */
.disclaimer-section {
    background-color: var(--background-color);
}

.disclaimer-card {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.disclaimer-title {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.disclaimer-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.disclaimer-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.disclaimer-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.regulatory-notice {
    background: rgba(99, 102, 241, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.regulatory-list {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.regulatory-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.regulatory-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.medical-advice-notice {
    font-style: italic;
    color: #475569;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

/* Responsive adjustments for Disclaimer section */
@media (max-width: 768px) {
    .disclaimer-card {
        padding: 1.5rem !important;
    }

    .disclaimer-text {
        font-size: 0.9rem;
    }

    .regulatory-notice {
        padding: 1rem;
    }
}

/* Footer Styles */
.footer-section {
    background-color: #f8fafc;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-block p {
    margin-bottom: 0;
}

.footer-bottom {
    color: #475569;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    color: #475569;
}

@media (max-width: 767px) {
    .footer-links {
        margin-top: 1rem;
        text-align: center !important;
    }

    .copyright {
        text-align: center;
    }
}

/* Legal Pages Styles */
.legal-content {
    color: #334155;
}

.legal-content h1 {
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.legal-content h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.legal-content h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul, 
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.criteria-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.03);
    border-radius: 10px;
}

.criteria-section:last-child {
    margin-bottom: 0;
}

.criteria-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.criteria-section ul {
    list-style-type: none;
    padding-left: 0;
}

.criteria-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.criteria-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-content {
        font-size: 0.95rem;
    }

    .legal-content h2 {
        font-size: 1.35rem;
    }

    .legal-content h3 {
        font-size: 1.15rem;
    }

    .criteria-section {
        padding: 1.25rem;
    }
} 