:root {
    --deep-indigo: #2D2A7A;
    --goldenrod-yellow: #FDB833;
    --bright-teal: #00A9A5;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-purple: #f0f0ff;
    --light-orange: #fff5f0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.1);
}

.hero-content {
    border: 2px solid black;
    padding: 70px;
    border-radius: 10px;
    backdrop-filter: blur(10px) brightness(1.2);
    background: rgba(255, 255, 255, 0.2);

}

.hero-text h1 {
    font-size: 40px;

}

.highlight {
    margin-top: 10px;

}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;

}

.section-header {
    padding-bottom: 0px;
}

.features-gridd {
    padding-top: 30px;
    padding-bottom: 100px;

}

.features-gridd .container {
    max-width: 1000px;

}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.feature-card {
    cursor: pointer;
}

.feature-image {
    overflow: hidden;

}

.feature-image img {
    width: 100%;
    object-fit: cover;

}

.feature-box-image {
    transition: all 0.5s ease;
}

.feature-box-image:hover {
    transform: scale(1.2) translateY(-5px);
    filter: brightness(0.7)
}

.guidance {
    padding: 100px 20px;
}

.guidance-content {
    grid-template-columns: 1fr 1fr;
}

.guidance-image img {
    border-radius: 10px;
    width: 100%;
}

.guidance-image {
    border-radius: 0;
}

.btn-additional1 {
    cursor: pointer;
    background-color: var(--goldenrod-yellow);
    color: var(--white);
}

.btn-additional2 {
    cursor: pointer;
    background-color: var(--bright-teal);
    color: var(--white);
}

.btn-additional2:hover {

    background-color: var(--goldenrod-yellow);

}

.article-image {
    overflow: hidden;
}

.article-image img {
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}


.article-image img:hover {
    transform: scale(1.1) translateY(-4px);
    filter: brightness(0.7);
}

/* CONTACT */

.contact-section {
    padding: 100px 20px;
    background-color: #f8f8f8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 70px;
}

.contact-detail-items {
    width: 70%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.contact-detail-items:hover {
    border: 2px solid var(--goldenrod-yellow);
    box-shadow: var(--box-shadow);
    transform: translateX(-5px);
}

.contact-detail-items-icon {
    width: 50px;
    height: 50px;
    background-color: #2D2A7A;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.contact-icon {
    color: var(--goldenrod-yellow);
    font-size: 15px;
}

form {
    width: 600px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 5px;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    outline: 0;
}

.form-group input:focus {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--goldenrod-yellow);
    border-radius: 5px;
}

.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    outline: 0;
}

.form-group textarea:focus {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--goldenrod-yellow);
    border-radius: 5px;
}

label {
    display: block;
    /* puts each label on its own line */
    font-size: 14px;
    /* adjust text size */
    font-weight: 600;
    /* make it bolder */
    color: #333;
    /* label color */
    margin-bottom: 6px;
    /* space before input */
}




/* FAQ */

.faq-section {
    padding: 100px 20px;

}

.faq-section .container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.faq-item {
    border: 2px solid transparent;
    border-radius: 5px;
    width: 800px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.faq-question {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    outline: 0;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    transition: all 0.5s ease;
}

.faq-question div {
    color: #00A9A5;
    transition: all 0.5s ease;

}

.faq-question div.active {
    color: #00A9A5;
    transform: rotate(40deg);

}

.faq-question.active {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    outline: 0;
    border: 0;
    color: var(--bright-teal);
}

.faq-answer {
    padding: 15px;
    display: none;
    transition: all 0.5s ease;

}

.faq-answer.active {
    padding: 15px;
    display: block;

}

@media (max-width: 780px) {

    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .faq-item {
        width: 100%;
    }

    form {
        width: 100%;
    }

    .contact-detail-items {
        width: 100%;
    }

    .guidance-content {
        display: flex;
        flex-direction: column;
    }

}

/* Agent Finder  */


.steps-container .step-card {
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.contact-form .form-container {
    margin-top: 20px;
    box-shadow: var(--box-shadow);
}

.form-row input {

    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    outline: 0;

}

.form-row input:focus {

    width: 100%;
    padding: 15px;
    border: 2px solid var(--goldenrod-yellow);
    border-radius: 5px;

}

.benefit-card {
    background-color: var(--white);
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.benefit-card h3 p {
    color: var(--dark-gray) !important;
}

/* My cta */

.mycta {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.mycta .container {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.mycta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.mycta p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}