/* General Reset */
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ================= BODY ================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFDFC;
    color: #000;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.7;
}

/* ================= HEADER ================= */
.headline {
    text-align: center;
    color: green;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 60px;
    width: auto;
}

/* ================= NAVBAR ================= */
.topnav {
    overflow: hidden;
    background-color: #90EE90;
}

.topnav a {
    float: left;
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #006400;
    color: white;
}

.topnav a.active {
    background-color: #4CAF50;
    color: white;
}

.topnav .icon {
    display: none;
}

.topnav::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;
}

/* ================= HEADINGS ================= */
h1 {
    text-align: center;
    font-size: 40px;
    color: #1b4d3e;
    margin-bottom: 20px;
    animation: fadeDown 1.2s ease-in-out;
}

.intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    opacity: 0.9;
    animation: fadeUp 1.5s ease-in-out;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    border-left: 5px solid #00d4ff;
    padding-left: 15px;
}

/* ================= CARDS ================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    animation: fadeUp 1s ease forwards;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(0, 212, 255, 0.15);
}

.card h3 {
    margin-bottom: 15px;
    color: #00d4ff;
    font-size: 20px;
}

.card p {
    font-size: 15px;
    opacity: 0.9;
}

/* ================= FAQ ================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
}

details {
    background: #f9fdfb;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

details[open] {
    border-color: #2d6a4f;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.1);
}

summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1b4d3e;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #2d6a4f;
}

details[open] summary::after {
    content: '-';
}

.answer {
    padding: 15px 20px 20px 20px;
    color: #4a4a4a;
    border-top: 1px solid #eee;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= FOOTER ================= */

footer {
    background-color: #A498F0;
    padding: 15px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.footer-col {
    width: 200px;
    min-width: 150px;
    box-sizing: border-box;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
}

/* Pink Underline */
.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    width: 50px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    font-size: 24px;
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: #e91e63;
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 768px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 600px) {
    .footer-col {
        width: 100%;
    }
}