/* AMP - Ace Medicine with Dr. Priyanka */
/* Main Stylesheet - Modified for Branding Website */

/* ===================================
   1. CSS Variables & Root Styles
   =================================== */
:root {
    --primary-blue: #1e3c72;
    --secondary-blue: #2a5298;
    --accent-blue: #3498db;
    --light-blue: #e8f4fd;
    --success-green: #2ecc71;
    --green-light: #7cb342;
    --green-dark: #2e7d32;
    --warning-orange: #f39c12;
    --gold: #d4a853;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --background: #f0f4f8;
    --white: #ffffff;
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===================================
   2. Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   3. Header Styles (Bootstrap 5.3.7 Compatible)
   =================================== */

#header-placeholder{
    height: 91px;
}
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030; /* Bootstrap's z-index for fixed headers */
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 65px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-blue);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Bootstrap 5.3.7 Button Overrides */
.btn-outline-primary {
    --bs-btn-color: var(--primary-blue);
    --bs-btn-border-color: var(--primary-blue);
    --bs-btn-hover-bg: var(--primary-blue);
    --bs-btn-hover-border-color: var(--primary-blue);
    --bs-btn-active-bg: var(--secondary-blue);
    --bs-btn-active-border-color: var(--secondary-blue);
}

/* Navbar Collapse Animation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: var(--shadow-md);
    }
}

/* ===================================
   4. Button Styles
   =================================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    display: inline-block;
    text-align: center;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
    color: white;
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ===================================
   5. Hero Section with Swiper (Bootstrap 5.3.7 Optimized)
   =================================== */
.hero-section {
    padding-top: 100px; /* Account for fixed header */
    position: relative;
    overflow: hidden;
    /* height: 74vh; */
    height: 700px;
}

/* Hero Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    top: 94px;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.4); Dark overlay for better text readability */
    z-index: 1;
}

/* Hero Content Overlay */
.hero-content-overlay {
    position: relative;
    z-index: 2;
    /* min-height: 71vh; */
    /* height: 71vh; */
    height: 555px;
    display: flex;
    align-items: center;
    color: white;
}

/* Hero text colors - all white with shadow for better readability */
.hero-section h1,
.hero-section .lead,
.hero-section p {
    color: var(--white) !important;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

.hero-content h1 {
    animation: fadeInUp 1s ease;
}

.hero-content p {
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero-stats {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warning-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.95;
    margin-top: 5px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Hero Image Animation */
.hero-image img {
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===================================
   6. App Store Buttons
   =================================== */
.app-store-btn {
    transition: all 0.3s ease;
    display: inline-block;
}

.app-store-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.app-store-btn img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.app-store-btn:hover img {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.app-store-btn-cta {
    transition: all 0.3s ease;
    display: inline-block;
}

.app-store-btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.1);
}

.app-store-btn-cta img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    width: 180px;
}

.app-store-btn-cta:hover img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ===================================
   7. Animation Keyframes
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   8. Section Styles
   =================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--gold));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-secondary) !important;
    font-size: 1.1rem;
    margin-top: 25px;
}

/* ===================================
   9. Features Section (Bootstrap 5.3.7 Cards)
   =================================== */
.features-section {
    background: white;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--gold));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(52, 152, 219, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-icon i {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   10. Courses Section
   =================================== */
.courses-section {
    padding: 100px 0;
    background: var(--background);
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.course-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.course-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-top: 15px;
}

.course-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.course-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex: 1;
}

.course-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.course-features li i {
    color: var(--success-green);
    font-size: 16px;
}

.course-price {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* ===================================
   11. About Section
   =================================== */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    align-items: center;
}

.about-image {
    text-align: center;
    margin-bottom: 40px;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features li i {
    color: var(--success-green);
    font-size: 22px;
}

/* ===================================
   12. CTA Section - Modified for App Store Buttons
   =================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-app-buttons {
    position: relative;
    z-index: 1;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: var(--primary-blue);
}

/* ===================================
   13. Footer (Bootstrap 5.3.7 Dark Theme)
   =================================== */
.footer {
    background: var(--bs-dark) !important;
}

.footer h4 {
    color: white !important;
}

.footer p {
    color: var(--bs-gray-400) !important;
}

.social-icons .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons .btn:hover {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
    transform: translateY(-3px);
}

/* Bootstrap 5.3.7 Utility Overrides */
.bg-light {
    background-color: var(--background) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

/* Card Improvements for Bootstrap 5.3.7 */
.card {
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    border: none;
}

/* Badge positioning fix */
.position-relative .badge {
    z-index: 1;
}

/* ===================================
   14. Responsive Design
   =================================== */
@media (max-width: 991px) {
    .navbar-nav {
        background: white;
        padding: 20px;
        margin-top: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
        text-align: center;
    }
    .hero-content-overlay {
        height: 450px;
    }
    .hero-content-overlay .hero-content h1{
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .app-store-btn img,
    .app-store-btn-cta img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .features-section,
    .courses-section,
    .about-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-app-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   15. Privacy Policy Styles
   =================================== */

/* Privacy Hero Section */
.privacy-hero-section {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.95) 0%, rgba(42, 82, 152, 0.95) 100%), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI0MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGRlZnM+CiAgICA8cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KICAgICAgPHBhdGggZD0iTSAwIDQwIEwgNDAgNDAgNDAgMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIiAvPgo8L3N2Zz4=');
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy-hero-content {
    animation: fadeInUp 1s ease;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.privacy-icon i {
    font-size: 40px;
    color: white;
}

.privacy-meta .badge {
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 80px 0;
    background: white;
}

.privacy-toc {
    background: var(--light-blue);
    border-radius: 15px;
    padding: 30px;
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.toc-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 10px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.toc-list a:hover,
.toc-list a:focus {
    color: var(--accent-blue);
    background: rgba(52, 152, 219, 0.1);
    border-left-color: var(--accent-blue);
    transform: translateX(5px);
}

.privacy-main-content {
    padding-left: 40px;
}

.privacy-section {
    scroll-margin-top: 120px;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 15px;
}

.section-heading i {
    color: var(--accent-blue);
    margin-right: 10px;
}

.subsection-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 15px 0;
}

.privacy-list {
    margin: 20px 0;
    padding-left: 0;
    list-style-type:none;
}

.privacy-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}
.privacy-list li::marker{
    content:"";
}

.privacy-list li:before {
    content: '•';
    color: var(--accent-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.privacy-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.privacy-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.privacy-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Security Features */
.security-feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.security-feature i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
    display: block;
}

.security-feature h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.security-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-item {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.right-item:hover {
    background: rgba(52, 152, 219, 0.15);
    transform: translateY(-2px);
}

.right-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.right-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-card {
    background: var(--light-blue);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(52, 152, 219, 0.15);
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
    display: block;
}

.contact-card h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Alert Enhancements */
.alert {
    border: none;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    color: var(--text-primary);
    border-left: 4px solid var(--accent-blue);
}

.alert-warning {
    background: rgba(243, 156, 18, 0.1);
    color: var(--text-primary);
    border-left: 4px solid var(--warning-orange);
}

/* Responsive Design for Privacy Policy */
@media (max-width: 991px) {
    .privacy-main-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .privacy-toc {
        position: relative;
        top: auto;
        max-height: none;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .privacy-hero-section {
        padding: 100px 0 60px;
    }
    
    .privacy-content-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .rights-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .privacy-meta .badge {
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .privacy-hero-section {
        padding: 90px 0 50px;
    }
    
    .privacy-hero-section h1 {
        font-size: 2rem;
    }
    
    .privacy-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .privacy-icon i {
        font-size: 30px;
    }
    
    .privacy-toc {
        padding: 20px;
    }
    
    .privacy-card,
    .security-feature,
    .right-item,
    .contact-card {
        padding: 20px;
    }
}

/* ===================================
   16. Utility Classes
   =================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-text {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}