/* AQI Path App Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --accent-color: #FF9800;
    --danger-color: #F44336;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, #4CAF50, #2196F3);
}
  .slightly-bold {
        font-weight: 500;
        font-size: 20px;
    }

    .heading-underline {
    width: 220px;
    height: 5px;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    margin: 0 auto 35px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

/* Text alignment based underline positioning */
.text-center .heading-underline {
    margin: 0 auto 35px;
}

.text-start .heading-underline,
.text-left .heading-underline {
    margin: 0 0 35px 0;
}

.text-end .heading-underline,
.text-right .heading-underline {
    margin: 0 0 35px auto;
}

/* Hero Section */
.hero-section {
    background: var(--gradient);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px 0;
    min-height: 70vh;
}

.hero-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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    /* background: transparent;
    border: none; */
    padding: 5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.download-btn-hero img {
    transition: all 0.3s ease;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    text-align: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    display: inline-block;
    animation: floatingPhone 3s ease-in-out infinite;
}

.app-preview {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes floatingPhone {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.section-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 15px 0 0;
    background: rgba(76, 175, 80, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Route Options Section */
.route-options-section {
    padding: 100px 0;
    background: white;
}

.dashboard-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.dashboard-intro {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.dashboard-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-features li {
    padding: 15px 0;
    font-size: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dashboard-features li:last-child {
    border-bottom: none;
}

.dashboard-features li:hover {
    background: rgba(76, 175, 80, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.dashboard-features i {
    margin-right: 15px;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.dashboard-features .fa-wind {
    background: #9b59b6;
}

.dashboard-features .fa-traffic-light {
    background: #e67e22;
}

.dashboard-features .fa-route {
    background: #3498db;
}

.dashboard-features .fa-clock {
    background: #f39c12;
}

.dashboard-features .fa-cloud-sun {
    background: #1abc9c;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    animation: pulse 2s infinite;
}

.step-number i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Health Benefits Section */
.health-benefits-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.health-intro {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.health-stats {
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 152, 0, 0.1);
    transform: translateX(5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.stat-icon.lungs {
    background: #e74c3c;
}

.stat-icon.shield {
    background: #3498db;
}

.stat-icon.battery {
    background: #27ae60;
}

.stat-icon i {
    color: white;
    font-size: 1.3rem;
}

.stat-content h5 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.stat-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Download Section */
.download-section {
    /* padding: 40px 0;
    background: var(--bg-light); */
}

.download-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.download-section p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 25px;
}

.download-section h4.slightly-bold {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0 10px 0;
}

.download-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.download-section ul li {
    padding: 12px 15px;
    margin-bottom: 8px;
    background: rgba(76, 175, 80, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    position: relative;
}

.download-section ul li:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.download-section ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
    margin: 5px 10px 5px 0;
}

.download-btn:hover {
    transform: translateY(-5px);
}

.download-btn img {
    width: 150px;
    object-fit: contain;
}

.download-image {
    text-align: center;
}

.floating-animation {
    width: 350px;
    height: auto;
    object-fit: contain;
    /* animation: floatingPhone 3s ease-in-out infinite; */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .app-preview {
        max-width: 200px;
    }
    
    .floating-animation {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .download-image {
        padding: 0 15px;
    }
    
    .download-btn img {
        width: 130px;
    }
    
    .download-section h2 {
        font-size: 1.5rem;
    }
    
    .dashboard-section {
        margin-bottom: 30px;
    }
    
    .health-benefits-section {
        margin-top: 30px;
    }
    
    .dashboard-features li {
        font-size: 0.9rem;
    }
    
    .stat-content h5 {
        font-size: 0.95rem;
    }
    
    .stat-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 20px 0;
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem 0;
    }
    
    .app-preview {
        max-width: 160px;
    }
    
    .floating-animation {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .download-image {
        padding: 0 10px;
        margin-top: 20px;
    }
    
    .download-btn img {
        width: 110px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .download-buttons-row {
        display: flex;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .download-btn-hero {
        flex: 1;
    }
    
    .download-btn-hero img {
        width: 100%;
        height: auto;
        max-height: 40px;
    }
    
    .btn-secondary {
        display: block;
        margin: 8px auto;
        text-align: center;
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .section-description {
        font-size: 0.8rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .download-section h2 {
        font-size: 1.3rem;
    }
    
    .download-section p {
        font-size: 0.8rem;
    }
    
    .features-section,
    .route-options-section,
    .download-section {
        padding: 40px 0;
    }
       .heading-underline {
        width: 100px;
    }
    
    .dashboard-section {
        margin-bottom: 40px;
    }
    
    .health-benefits-section {
        margin-top: 40px;
    }
    
    .dashboard-features li {
        font-size: 0.8rem;
    }
    
    .stat-content h5 {
        font-size: 0.85rem;
    }
    
    .stat-content p {
        font-size: 0.75rem;
    }
}

/* AOS Animation Overrides */
[data-aos="fade-up"] {
    transform: translate3d(0, 40px, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(-40px, 0, 0);
}

[data-aos="fade-left"] {
    transform: translate3d(40px, 0, 0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

/* Health Advisory Section */
.health-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.health-content {
    background: #F7F7FC;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.health-wrapper {
    width: 100%;
}

.health-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.health-heading h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.disease-list {
    margin-bottom: 1.5rem;
}

.disease-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    min-height: 36px;
}

.disease-chip:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
}

.disease-chip:hover img {
    filter: brightness(300%);
}

.disease-chip.active {
    background: var(--gradient);
    color: white;
}

.disease-chip.active img {
    filter: brightness(300%);
}

.disease-chip img {
    width: 18px;
    height: 18px;
    transition: filter 0.3s ease;
}

.disease-info {
    background: linear-gradient(70deg, #FEFEFF 36.61%, #F7F7FE 128.04%);
    border-radius: 3rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.disease-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    position: relative;
    background: #FFF;
    width: 100%;
}

.disease-image img {
    width: 100%;
    max-width: 200px;
    z-index: 1;
}

.risk-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    /* padding: 0.5rem 1rem; */
    width: 100%;
    border-radius: 0.5rem;
    background: rgb(201, 32, 51);
    z-index: 1;
}

.risk-badge svg {
    width: 1.7rem;
    height: 1.7rem;
    flex-shrink: 0;
}

.risk-badge p {
    margin: 0;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

.disease-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(201, 32, 51);
    opacity: 0.3;
    z-index: 0;
}

.disease-content {
    padding: 3rem;
}

.disease-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    gap: 1.2rem;
}

.risk-text {
    font-weight: normal;
    font-size: 1rem;
}

.risk-text span {
    font-weight: 700;
}

.risk-text .high {
    color: #C92033;
}

.risk-text .range {
    color: #C92033;
}

.symptoms {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.dos, .donts {
    display: flex;
    flex-direction: column;
}

.section-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.dos ul, .donts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dos li, .donts li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.dos li i, .donts li i {
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    color: #4CAF50;
}

.donts li i {
    color: #F44336;
}

.dos li p, .donts li p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.disclaimer {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

/* Mobile First - Extra Small Devices */
@media (max-width: 480px) {
    .health-section {
        padding: 30px 0;
    }
    
    .health-content {
        padding: 1rem;
        border-radius: 0.8rem;
    }
    
    .health-heading h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .disease-list {
        margin-bottom: 1rem;
    }
    
    .disease-chip {
        font-size: 0.75rem;
        padding: 6px 8px;
        min-height: 32px;
        gap: 0.2rem;
    }
    
    .disease-chip img {
        width: 14px;
        height: 14px;
    }
    
    .disease-content {
        padding: 1rem;
    }
    
    .disease-content h4 {
        font-size: 1rem;
    }
    
    .disease-image img {
        max-width: 120px;
        height: auto;
    }
    
    .risk-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .symptoms {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 0.9rem;
    }
    
    .dos li p, .donts li p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .disclaimer {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .info-grid {
        gap: 1rem;
    }
}

/* Small Mobile Devices */
@media (min-width: 481px) and (max-width: 575px) {
    .health-section {
        padding: 40px 0;
    }
    
    .health-content {
        padding: 1.2rem;
        border-radius: 1rem;
    }
    
    .health-heading h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .disease-list {
        margin-bottom: 1.2rem;
    }
    
    .disease-chip {
        font-size: 0.8rem;
        padding: 7px 10px;
        min-height: 34px;
        gap: 0.25rem;
    }
    
    .disease-chip img {
        width: 16px;
        height: 16px;
    }
    
    .disease-content h4 {
        font-size: 1.1rem;
    }
    
    .disease-image img {
        max-width: 140px;
        height: auto;
    }
    
    .risk-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .symptoms {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 0.95rem;
    }
    
    .dos li p, .donts li p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .disclaimer {
        font-size: 0.75rem;
    }
}

/* Tablet Portrait */
@media (min-width: 576px) and (max-width: 767px) {
    .health-content {
        padding: 1.8rem;
    }
    
    .health-heading h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .disease-chip {
        font-size: 0.85rem;
        padding: 8px 14px;
        min-height: 38px;
    }
    
    .disease-chip img {
        width: 18px;
        height: 18px;
    }
    
    .disease-content h4 {
        font-size: 1.15rem;
    }
    
    .risk-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .symptoms {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .dos li p, .donts li p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .disclaimer {
        font-size: 0.8rem;
    }
}

/* Tablet Landscape & Small Desktop */
@media (min-width: 768px) and (max-width: 991px) {
    .health-content {
        padding: 3rem;
    }
    
    .health-heading h3 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .health-heading .location {
        font-size: 1.5rem;
    }
    
    .chip-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.8rem;
    }
    
    .disease-chip {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .disease-info {
        flex-direction: row;
    }
    
    .disease-image {
        max-width: 280px;
    }
    
    .disease-content {
        padding: 3rem;
    }
    
    .disease-content h4 {
        font-size: 1.7rem;
    }
    
    .risk-text, .symptoms {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.05rem;
    }
    
    .dos li p, .donts li p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .info-grid {
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
    }
    
    .disclaimer {
        font-size: 0.8rem;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-section .col-lg-6:first-child {
        flex: 0 0 70%;
        max-width: 70%;
    }
    
    .hero-section .col-lg-6:last-child {
        flex: 0 0 30%;
        max-width: 30%;
    }
    
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }
    
    .download-buttons-row {
        display: flex;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .btn-secondary {
        margin: 0;
        width: auto;
        max-width: none;
        align-self: center;
    }
    
    .health-content {
        padding: 2rem;
    }
    
    .health-heading h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .disease-chip {
        font-size: 0.85rem;
        padding: 8px 12px;
        min-height: 36px;
    }
    
    .disease-chip img {
        width: 18px;
        height: 18px;
    }
    
    .disease-info {
        flex-direction: row;
    }
    
    .disease-image {
        max-width: 250px;
    }
    
    .disease-content {
        padding: 2rem;
    }
    
    .disease-content h4 {
        font-size: 1.2rem;
    }
    
    .risk-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .symptoms {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .dos li p, .donts li p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .info-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }
    
    .disclaimer {
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .chip-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.selected.disease.info {
    background: linear-gradient(70deg, #FEFEFF 36.61%, #F7F7FE 128.04%);
    border-radius: 3rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .selected.disease.info {
        flex-direction: row;
    }
}

.selected.disease.info .image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    position: relative;
    width: 100%;
    background: #FFF;
}

@media (min-width: 768px) {
    .selected.disease.info .image {
        max-width: 300px;
    }
}

.selected.disease.info .image img {
    z-index: 1;
    width: 100%;
    max-width: 200px;
}

.chances {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    padding: 0.7rem 1rem;
    width: 100%;
    border-radius: 0.5rem;
    background: rgb(201, 32, 51);
    font-weight: 600;
}

.chances svg {
    min-width: 1.7rem;
    max-width: 1.7rem;
    aspect-ratio: 1;
}

.info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
}

@media (min-width: 768px) {
    .info-wrapper {
        padding: 4rem 4rem 4rem 6rem;
    }
}

.info-wrapper h4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.info {
    display: grid;
    gap: 2.5rem 1.5rem;
}

@media (min-width: 640px) {
    .info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .info {
        gap: 2.5rem;
    }
}

.risk span {
    font-weight: 800;
}

.risk span:not(:first-child) {
    color: #C92033;
}

.dos, .donts {
    display: flex;
    flex-direction: column;
}

.dos p, .donts p {


}

.dos ul, .donts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dos li, .donts li {
    display: flex;
    /* align-items: baseline;
    gap: 1rem; */
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.dos svg {
    min-width: 1.8rem;
    max-width: 1.8rem;
    aspect-ratio: 18/10;
}

.donts svg {
    min-width: 1.5rem;
    max-width: 1.5rem;
    aspect-ratio: 1;
    transform: translateY(20%);
}

.health-section .italic {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.7em;
    color: var(--text-light);
    text-align: center;
    margin-top: 2rem;
    line-height: 1.4;
}

/* Dark mode styles (if needed) */
@media (prefers-color-scheme: dark) {
    .health-section {
        background: #2b3138;
    }
    
    .health-section .bottom {
        background: #2b3138;
    }
    
    .health-section .heading h3 {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .disease-list li {
        color: rgba(255, 255, 255, 0.9);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .selected.disease.info {
        background: linear-gradient(70deg, rgba(43,49,56,0.6) 36.61%, rgba(43,49,56,0.6) 128.04%);
        color: #97A7B6;
    }
    
    .info-wrapper h4 {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dos p, .donts p {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

  .inner {
    width: 9px;
    height: 9px;
    background-color: #fff;
    border-radius: 2px;
    box-sizing: border-box;
  }