* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}



.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 100px;
    /* padding: 15px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80%;
    font-size: 20px;
    color: #4fc3f7;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.clarity {
    font-size: 28px;
    font-weight: bold;
    color: #666;
    letter-spacing: 2px;
}

.tagline {
    font-size: 12px;
    color: #999;
    margin-top: -2px;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #666;
}

.phone,
.email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone i,
.email i {
    color: #999;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #999;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4fc3f7;
}

.search-icon {
    color: #4fc3f7;
    font-size: 18px;
    cursor: pointer;
}

/* Navigation Menu */
.nav-menu {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 5px;
    justify-content: space-evenly;
    align-items: center;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 15px 0;
}

.menu-items li a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.menu-items li a:hover {
    color: #4fc3f7;
}

.menu-item li a {
    color: white;
}

.menu-items li.dropdown a i {
    font-size: 10px;
}

.menu-items .dropdown-menu {
    display: none;
    position: absolute;
    border-radius: 20px;
    background: #1483ae;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

.menu-items .dropdown.open>.dropdown-menu {
    display: block;
}

.menu-items .dropdown {
    position: relative;
}

.menu-items .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.menu-items .dropdown-menu li a:hover {
    background: #17b9dd;
    border-radius: 10px;
}

/* Donate Button */
.btn-donate {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

.btn-donate i {
    color: #ff6b6b;
}



.header {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, #87ceeb 0%, #4a90e2 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.content {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 2px;
}

.question-section h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 400;
}

.symptoms-list {
    list-style: none;
    padding: 0;
}

.symptoms-list li {
    position: relative;
    padding: 15px 0 15px 30px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

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

.symptoms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 15px;
    color: #87ceeb;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.symptoms-list li:hover {
    color: #2c3e50;
    padding-left: 35px;
}

.symptoms-list li:hover::before {
    color: #4a90e2;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .content {
        padding: 30px 25px;
    }
    
    h1 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .question-section h2 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .symptoms-list li {
        font-size: 1rem;
        padding: 12px 0 12px 25px;
        margin-bottom: 15px;
    }
    
    .symptoms-list li::before {
        top: 12px;
        font-size: 1.3rem;
    }
    
    .symptoms-list li:hover {
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }
    
    .content {
        padding: 25px 20px;
    }
    
    h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .question-section h2 {
        font-size: 1.2rem;
    }
    
    .symptoms-list li {
        font-size: 0.95rem;
        padding: 10px 0 10px 20px;
    }
    
    .symptoms-list li::before {
        top: 10px;
        font-size: 1.2rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .symptoms-list li,
    .symptoms-list li::before,
    .progress-fill {
        transition: none;
    }
}

/* Focus states for accessibility */
.symptoms-list li:focus-within {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    border-radius: 4px;
}



.content-section {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.intro-text {
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
}

.reassurance-section {
    margin-bottom: 40px;
}

.reassurance-section h2 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.reassurance-section p {
    font-size: 1.1rem;
    color: #555;
}

.video-section {
    margin-bottom: 50px;
}

.video-section h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.video-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 10px;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.play-button {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-note {
    color: #999;
    font-style: italic;
    font-size: 0.95rem;
}

.help-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 500;
}

.help-list {
    list-style: none;
    counter-reset: help-counter;
    padding-left: 0;
}

.help-list li {
    counter-increment: help-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.help-list li::before {
    content: counter(help-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.1rem;
}

.link {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.highlight {
    color: #e74c3c;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    
    .content-section {
        padding: 30px 25px;
    }
    
    .intro-text p,
    .reassurance-section p {
        font-size: 1rem;
    }
    
    .reassurance-section h2 {
        font-size: 1.3rem;
    }
    
    .video-section h3 {
        font-size: 1.1rem;
    }
    
    .video-placeholder {
        padding: 40px 20px;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .help-section h3 {
        font-size: 1.2rem;
    }
    
    .help-list li {
        font-size: 1rem;
        padding-left: 35px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 25px 20px;
    }
    
    .intro-text p,
    .reassurance-section p,
    .help-list li {
        font-size: 0.95rem;
    }
    
    .reassurance-section h2 {
        font-size: 1.2rem;
    }
    
    .video-section h3 {
        font-size: 1rem;
    }
    
    .help-section h3 {
        font-size: 1.1rem;
    }
    
    .video-placeholder {
        padding: 30px 15px;
    }
    
    .play-button svg {
        width: 45px;
        height: 45px;
    }
    
    .help-list li {
        padding-left: 30px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .play-button {
        transition: none;
    }
    
    .link {
        transition: none;
    }
}

/* Focus states for accessibility */
.link:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    border-radius: 2px;
}

.play-button:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 4px;
    border-radius: 50%;
}




.footer {
    background-color: #e7e7e7;
    color: #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Logo Section */
.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #4db8e8;
}

.logo-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Links Section */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4db8e8;
}

/* Location Sections */
.location-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.location-section p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Social Section */
.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.phone {
    background-color: #4db8e8;
    color: white;
}

.social-icon.email {
    background-color: #4db8e8;
    color: white;
}

.social-icon.instagram {
    background-color: #4db8e8;
    color: white;
}

.social-icon.facebook {
    background-color: #4db8e8;
    color: white;
}

.social-icon.linkedin {
    background-color: #4db8e8;
    color: white;
}

.mailing-list-btn {
    background-color: #4db8e8;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mailing-list-btn:hover {
    background-color: #3da3d3;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a;
    color: #888;
    padding: 20px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-bottom p {
    font-size: 0.85rem;
    text-align: center;
}