:root {
    --primary: #0a4a91;
    --accent: #e63946;
    --text-main: #2b2d42;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); line-height: 1.8; background-color: var(--white); scroll-behavior: smooth; }
h1, h2, h3 { font-family: 'Merriweather', serif; color: var(--primary); margin-bottom: 20px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

/* Header & Logo Styling */
.site-header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-wrapper { display: flex; justify-content: space-between; align-items: center; height: 85px; }
.logo a { font-size: 28px; font-weight: 700; text-decoration: none; }

/* Logo Parts */
.logo-part-1 { color: var(--primary); }
.logo-part-2 { color: var(--accent); font-weight: 400; }

.nav-menu ul { display: flex; gap: 25px; list-style: none; }
.nav-menu a { text-decoration: none; font-weight: 600; color: var(--text-main); font-size: 15px; }

/* Hero */
.hero { background: linear-gradient(rgba(10, 74, 145, 0.85), rgba(10, 74, 145, 0.85)), url('../images/kamagra-oral-jelly-usa-ed-treatment.jpg') no-repeat center/cover; padding: 120px 0; color: var(--white); text-align: center; }
.hero h1 { color: var(--white); font-size: 3.2rem; line-height: 1.2; }
.btn-primary { background: var(--accent); color: var(--white); padding: 18px 45px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.3s; font-size: 1.1rem; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3); }

/* Main Content */
.main-content { padding: 80px 0; }
.content-block { margin-bottom: 80px; }
.bg-light-box { background: var(--bg-light); padding: 50px; border-radius: 20px; border: 1px solid #eee; }
.check-list li { margin-bottom: 15px; list-style: none; padding-left: 35px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #2a9d8f; font-weight: bold; font-size: 1.2rem; }
.responsive-img { max-width: 100%; height: auto; border-radius: 15px; margin: 30px 0; box-shadow: var(--shadow); }

/* FAQ Accordion */
.faq-container { max-width: 950px; margin: 40px auto; }
.faq-item { background: #fff; border: 1px solid #e0e0e0; border-radius: 15px; margin-bottom: 18px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.faq-question { width: 100%; padding: 25px 30px; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-size: 1.15rem; font-weight: 700; color: var(--primary); outline: none; }
.faq-icon { position: relative; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--accent); transition: 0.3s; }
.faq-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer-inner { padding: 0 30px 30px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; border-top: 1px solid #f9f9f9; padding-top: 20px; }

/* Alerts & Footer Improvements */
.warning-alert { background: #fff5f5; border-left: 6px solid var(--accent); padding: 40px; border-radius: 15px; }

/* --- UPDATED FOOTER DESIGN --- */
footer { 
    background: #1d3557; 
    color: #f1faee; 
    padding: 80px 0 40px; 
    text-align: center; 
}

/* Updated Footer h3 for better visibility */
footer h3 {
    color: var(--accent) !important; /* H3 now uses Accent Red */
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Merriweather', serif;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05); /* Proper transparency for dark backgrounds */
    border-left: 5px solid var(--accent);
    padding: 35px;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 12px;
    text-align: left;
}

.footer-disclaimer p {
    color: #f1faee !important; 
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-icons {
    font-weight: 700;
    color: var(--accent);
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.text-center { text-align: center; }

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .faq-question { font-size: 1rem; padding: 20px; }
    .footer-sections { text-align: center; }
}