:root {
    --primary: #1E88E5;
    --accent: #FFA726;
    --text-dark: #333;
    --bg-light: #F9FAFB;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    background: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-size: 24px;
}

nav a {
    margin-left: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.faq-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    align-items: flex-start;
}

.faq-intro {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 3rem;
    padding: 0 2rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}



.faq-image {
    flex: 1;
    text-align: center;
}

.faq-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-section {
    flex: 2;
}

.faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 2rem;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    background-color: var(--bg-light);
    padding: 1rem 1.5rem;
    cursor: pointer;
    /* font-weight: 600; */
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.toggle-icon {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent);
    transition: transform 0.3s ease;
}


.faq-answer {
    padding: 1rem 1.5rem;
    display: none;
    font-size: 15px;
    color: #444;
}

.faq-item.active .faq-answer {
    display: block;
}

footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

/* Whatsapp Button */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    /* background-color: red; */
}

.whatsapp-button img {
    width: 55px;
    height: 55px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .faq-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .faq-image img {
        width: 220px;
        height: 220px;
    }
}


/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1E88E5;
}


/* Responsivness part of this page */

/* Tablets and Small Desktops (≤ 992px) */
@media (max-width: 992px) {
    .faq-wrapper {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .faq-intro {
        font-size: 18px;
        padding: 0 1rem;
    }

    .faq-section h2 {
        font-size: 28px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* Tablets and Large Phones (≤ 768px) */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 106px;
        left: 146px;
        width: 60%;
        /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
        z-index: 1000;
    }

    nav.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    header {
        position: relative;
        flex-direction: row;
    }

    header h1 {
        font-size: 20px;
    }

    nav a {
        padding: 15px;
        /* border-top: 1px solid #eee; */
        text-align: center;
        margin-left: 0;
        font-size: 16px;
    }

    .faq-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .faq-image img {
        width: 200px;
        height: 200px;
    }

    .faq-section h2 {
        font-size: 24px;
    }

    .faq-question {
        padding: 0.8rem 1rem;
    }

    .faq-answer {
        padding: 0.8rem 1rem;
    }

    footer {
        padding: 1.5rem;
        font-size: 14px;
    }

    .whatsapp-button img {
        width: 45px;
        height: 45px;
    }
}

/* Mobile Devices (≤ 480px) */
@media (max-width: 480px) {
    header {
        padding: 0.8rem 1rem;
    }

    header h1 {
        font-size: 20px;
    }

    nav a {
        font-size: 15px;
    }

    .faq-intro {
        font-size: 16px;
    }

    .faq-section h2 {
        font-size: 22px;
        margin-bottom: 1.5rem;
    }

    .faq-image img {
        width: 160px;
        height: 160px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .toggle-icon {
        font-size: 18px;
    }

    footer {
        font-size: 13px;
    }

    .whatsapp-button img {
        width: 40px;
        height: 40px;
    }
}