/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #f4f9fc 0%, #e8f3f8 100%);
    color: #333;
    line-height: 1.6;
}

/* Navigation */
header {
    background: #007c91; /* medical teal */
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #cceef3; /* lighter teal for hover */
}

/* Main layout */
main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    gap: 50px;
}

/* Awareness text */
.content {
    max-width: 550px;
}

.content .month {
    font-size: 16px;
    font-weight: bold;
    color: #007c91;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.content .title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

/* CTA button */
.content button {
    background: #007c91;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content button a {
    color: white;
    text-decoration: none;
}

.content button:hover {
    background: #005f6d; /* darker teal hover */
}

/* Image Section */
.image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
}

/* Contact + FAQ page */
.container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.container h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #007c91;
}

.social-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.social-list li {
    text-align: center;
}

.social-list img {
    width: 40px;
    margin-bottom: 8px;
}

.social-list span {
    display: block;
    font-size: 15px;
    font-weight: 500;
}

/* FAQ Section */
.faq h2 {
    margin-bottom: 20px;
    color: #007c91;
    font-size: 22px;
    font-weight: bold;
}

.faq-list {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
    color: #555;
}

.faq-list li {
    margin-bottom: 10px;
    font-size: 15px;
}
