body {
    background-color: #f8f8f8;
    color: #fff;
    font-family: sans-serif;
    font-size: 18px;
}


.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 0;
    background: linear-gradient(to right, #008080, #008B8B);
}

.background-animation-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    background-color: #f8faff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    width: 90%;
    margin: 60px auto;
    overflow: hidden;
    padding: 40px;
    gap: 40px;
    color: #0d1a26;
}

.question-mark {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    position: relative;
}

.question-mark .fas.fa-question-circle {
    font-size: 250px;
    color: #00796b;
    opacity: 1;
    position: sticky;
    top: 50px;
}

.faq-items {
    flex-grow: 1;
    /* border-left: 2px solid #e0e0e0;  maam asked to removoe border and increse size of question mark */
    padding-left: 40px;
}

.faq-item {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    transition: box-shadow 0.3s ease;
}

.faq-question {
    background-color: #ffffff;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: #142f60;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
    border-color: #c9c9c9;
}

.faq-item.active .faq-question {
    background-color: #e0f7fa;
    color: #004d40;
    border-color: #00796b;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-question h2 {
    flex-grow: 1;
    text-align: left;
    margin: 0; 
    font-size: 1em; 
    font-weight: 600;
}

.faq-question i {
    font-size: 1.1em;
    color: #142f60;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-question i {
    color: #00796b;
    transform: rotate(0deg);
}

.faq-answer {
    background-color: #f0faff;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    border: 1px solid #e0f7fa;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 25px 25px 25px;
    border-color: #00796b;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #444;
    font-size: 0.95em;
}
@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
        padding: 20px 30px; 
        width: 95%;
        margin: 40px auto;
    }

    .question-mark {
        flex: none;
        width: 100%;
        padding-top: 10px;
        margin-bottom: 0;
        text-align: center;
    }
    
    .question-mark .fas.fa-question-circle {
        font-size: 100px;
        position: static;
        opacity: 1;
    }
    
    .faq-items {
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }
    
    .faq-question {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }
    
    .faq-container {
        padding: 20px 30px;
        width: 95%; 
        margin: 40px auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 0.9em;
    }
    
    .hero-content {
        max-width: 90%; 
    }
    
    .faq-container {
        padding: 20px 15px; 
        width: 90%; 
        margin: 40px auto;
    }
}