 body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .header-section {
            background-color: #fff;
            padding: 20px 0;
            border-bottom: 1px solid #eaeaea;
        }
        
        .main-title {
            color: #000;
            font-weight: bold;
            text-align: center;
            margin: 20px 0;
            line-height: 1.2;
			font-family: Ubuntu, Helvetica, sans-serif !important;
		}.main-title span{
			color:#d32f2f;
		}
        
        .content-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: white;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 5px;
        }
        
        .highlight-text {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
            font-size: 1.1rem;
        }
        
        .doctor-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 5px;
            margin: 20px auto;
            display: block;
            border: 1px solid #ddd;
        }
        
        .watch-button {
            display: block;
            width: 100%;
            max-width: 500px;
            margin: 30px auto;
            padding: 18px;
            font-size: 1.4rem;
            font-weight: bold;
            background-color: #d32f2f;
            color: white;
            border: none;
            border-radius: 5px;
            text-align: center;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .watch-button:hover {
            background-color: #b71c1c;
            color: white;
            text-decoration: none;
        }
        
        .stat-box {
            background-color: #e8f5e9;
            border: 1px solid #c8e6c9;
            border-radius: 5px;
            padding: 20px;
            margin: 25px 0;
            text-align: center;
        }
        
        .testimonial {
            font-style: italic;
            border-left: 3px solid #4caf50;
            padding-left: 20px;
            margin: 25px 0;
            color: #555;
        }
        
        .footer-text {
           
           color: #bbb;
			font-weight: bolder;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        @media (max-width: 768px) {
            .content-container {
                padding: 15px;
            }
            
            .main-title {
                font-size: 1.8rem;
            }
            
            .watch-button {
                font-size: 1.2rem;
                padding: 15px;
            }
        }
		
		.body-text {
    font-size: 18px;
    line-height: 23.4px;
    margin-bottom: 25px;
    color: #2f2f2f;
}
		/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #F6AD43;
    color: #2c2c2c;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 50px;
    border-radius: 8px;
    margin: 15px auto 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    max-width: 90%;
    width: auto;
    border: none;
    outline: none;
}

.cta-button::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #2c2c2c;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.cta-button::after {
    content: '\25B6\FE0E';
    position: absolute;
    left: 58px;
    top: 50%;
    transform: translateY(-50%);
    color: #E2A857;
    font-size: 19px;
    line-height: 1;
    pointer-events: none;
    z-index: 10;
}

.cta-button:hover {
    background: #D89A45;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}
		
		
		
		/* Desktop styles (768px and up) */
@media screen and (min-width: 768px) {
    .container {
        padding: 40px 30px 60px;
        max-width: 1150px;
    }

    .hero {
        padding: 0 10px;
    }

    .headline {
        font-size: 56px;
        margin-top: 0;
        margin-bottom: 30px;
        line-height: 1.2;
        font-weight: 900;
        max-width: 100%;
    }

    /* Hide image and show text on desktop */
    .headline-image {
        display: none;
    }

    .headline-text {
        display: block;
    }

    .hero-image {
        max-width: 90%;
        width: 100%;
    }

    .image-container {
        margin: 20px auto 30px;
    }

    .cta-button {
        font-size: 32px;
        padding: 18px 60px;
        margin: 30px auto 30px;
        max-width: 450px;
        gap: 15px;
    }

    .cta-button::before {
        width: 55px;
        height: 55px;
    }

    .cta-button::after {
        left: 78px;
        font-size: 20px;
    }

    .content {
        margin-top: 0px;
        max-width: 100%;
        text-align: left;
    }

    .intro-text {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .body-text {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .cta-link {
        font-size: 23px;
        padding-left: 2px;
    }

    .footer {
        padding: 50px 30px;
    }

    .copyright {
        font-size: 15px;
    }

    .footer-nav {
        gap: 25px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .disclaimer-text {
        font-size: 12px;
    }
}

/* Large desktop styles (960px and up) */
@media screen and (min-width: 960px) {
    .container {
        padding: 10px 00px 80px;
        max-width: 960px;
    }

    .hero {width: 844px; margin:0 auto;}

    .headline {
        font-size: 48px;
        margin-bottom: 15px;
        margin-top:15px;
        line-height: 50px;
    }

    .image-container {
        margin: 15px auto 10px;
    }

    .cta-button {
        font-size: 34px;
        padding: 15px 60px;
        max-width: 500px;
    }

    .cta-button::before {
        width: 58px;
        height: 58px;
    }

    .cta-button::after {
        left: 82px;
        font-size: 21px;
    }

    .intro-text,
    .body-text {
        font-size: 22px;
        line-height: 1.30;
    }
}
		/* Tablet styles (481px and up) */
@media screen and (min-width: 481px) {
    .container {
        padding: 30px 24px;
    }

    .headline {
        font-size: 36px;
    }

    .hero-image {
        max-width: 400px;
    }

    .cta-button {
        font-size: 28px;
        padding: 20px 60px;
        max-width: 450px;
    }

    .cta-button::before {
        width: 50px;
        height: 50px;
    }

    .cta-button::after {
        left: 78px;
        font-size: 18px;
    }

    .intro-text {
        font-size: 19px;
    }

    .body-text {
        font-size: 18px;
    }

    .footer-nav {
        gap: 20px;
    }
}
		
		.copyright {
    font-size: 14px;
    color: #c6c6c6;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.footer-nav a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-weight: bold;
    
}

.footer-nav a:hover {
    color: #0038ff;
    text-decoration: underline;
}
