.nav__link a {
    color: #333333;
}

.nav__link a:hover {
    color: #4d4d4d;
}

.nav__link a:hover .d-toggle {
    fill: #4d4d4d;
}


.d-toggle {
    fill: #333333;
}

.header-btn{
    background: #334097;
    padding: 0.9vw 1.5vw;
    color: #fcf6f6;
    outline: none;
    font-family: "Altone Trial", sans-serif;
    font-size: 1.1vw;
    border: 0.1vw solid #fff;
    border-radius: 1vw;
    z-index: 2;
    height: 100%;
    position: relative;
    cursor: pointer;
}

/* Intro section */

.why-header {
    position: relative;
    width: 100%;
    height: 20vw; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
    background-color: rgba(228, 225, 225, 0.248); /* Semi-transparent overlay */
    z-index: 1;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.why-content {
    position: relative;
    z-index: 2; /* Ensures content appears above overlay */
    text-align: center;
    padding: 0 1vw;
    color: #1a237e;
}

.why-title {
    font-size: 3vw;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


@media (max-width: 768px) {
    .why-header {
        height: 30vw;
    }

    .why-title {
        font-size: 4vw;
    }

}

/* First section */

.first {
    background-color: #f5f5f5;
    padding: 5vw 10vw;
    display: flex;
    gap: 5vw;
    justify-content: space-between;
    align-items: center;
}

.first .container {
    width: 45vw;
}

.first p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1vw;
}

.img-container {
    width: 50vw;
    height: 30vw;
    border: 0.5vw solid #fff;
    border-radius: 1.5vw;
}

.img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1vw;
}

/* FaQ section */

.faq{
    padding: 5vw 10vw;
}

.faq h2{
    font-size: 2.5vw;
    color: #1a237e;
    margin-bottom: 1vw;
}

.faq p{
    line-height: 1.5;
}

.faq-item {
    margin: 2vw 0;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    color: #333;
    font-size: 1.3vw;
    display: flex;
    gap: 1vw;
    align-items: center;
}

.faq-question i {
    font-size: 1.8vw;
    transition: transform 0.5s ease;
}

.faq-question.open i {
    transform: rotate(45deg);
}

.faq-question.open {
    color: #1a237e;
}

.faq-answer {
    display: none;
    margin: 1.5vw 0;
    padding-left: 0.5vw;
}

.faq-answer.open {
    display: block; 
}

.faq-answer p {
    line-height: 1.5;
    color: #333;
}

.faq-answer ul {
    margin-top: 1vw;
    margin-left: 3vw;
}

.faq-answer ul li {
    line-height: 1.5;
    color: #333;
}


/* IMG STYLES */

.img-section {
    margin: 4vw 0;
}

.img-content {
    width: 100%;
    height: 30vw;
    position: relative;
}

.img-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA STYLES */

.cta-section {
    padding: 0 8vw;
    background: transparent;
    margin-top: -14vw;
    position: relative;
    margin-bottom: 10vw;
}

.cta-content {
    padding: 3vw 3vw 6vw 3vw;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
    text-align: center;
}

.cta-heading{
    font-size: 2.5vw;
    font-weight: 800;
    margin-bottom: 1vw;
}

.cta-text{
    width: 90%;
    margin: auto;
    font-size: 1.1vw;
    margin-bottom: 3vw;
}

.cta-button {
    background-color: #daa520;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1vw;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #dac020;
}