@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


:root {
    --primary-color: #EAEEF2;
    --button-color: #047AE5;
    --button1-color: #38495C;
    --text-color: #020817;
    --heading-color: #232C36;
    --border-radius: 2.4rem;
    --footer-bg-color: #01052C;
    --primary-font: "Lexend", sans-serif;
    --secondary-font: "Figtree", sans-serif;

}

html {
    font-size: 62.5%;
}

body {
    font-family: var(--primary-font);
    background-color: transparent;
}

.margin-top {
    margin-top: 5rem;
}


p {
    font-family: var(--secondary-font);
}

h3 {
    font-size: 3.2rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-two--cols {
    grid-template-columns: repeat(2, 1fr);
}

a,
ul {
    color: var(--heading-color);
    text-decoration: none;
    list-style: none;
}


.btn1 {
    background-color: var(--button-color);
    font-family: var(--primary-font);
    border: none;
    padding: 1rem 2.6rem;
    color: #fff;
    border-radius: var(--border-radius);
    font-weight: 400;
    font-size: 1.6rem;
    transition: all 3s ease-in-out;
    transition: transform 0.3s ease-in-out;

}

.btn1:hover {
    transform: scale(1.05);
}

.btn2 {
    margin-top: 1.5rem;
    width: fit-content;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #232C36;
    color: #232C36;
    font-size: 1.4rem;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.btn2 .icon {
    display: inline-block;
    color: #232C36;
    font-weight: 200;
    font-size: 1.2rem;
    margin-left: 0.6rem;
    transition: transform 0.3s ease-in-out;
}


.btn2:hover .icon {
    transform: rotate(-45deg);
}


.btn3 {
    background-color: #e6f2fc;
    font-family: var(--primary-font);
    margin-left: 1.5rem;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 400;
    font-size: 1.4rem;
    transition: all 3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.btn3:hover {
    transform: scale(1.05);
}

.btn4 {
    background-color: transparent;
    font-family: var(--primary-font);
    margin-top: 1rem;
    border: 1px solid #232c36;
    padding: 1rem 2.6rem;
    border-radius: var(--border-radius);
    font-weight: 400;
    font-size: 1.6rem;
}

.btn5 {
    background-color: var(--button-color);
    font-family: var(--primary-font);
    border: none;
    padding: 0.8rem 1.6rem;
    color: #fff;
    border-radius: var(--border-radius);
    font-weight: 400;
    font-size: 1.4rem;
    transition: all 3s ease-in-out;
    transition: transform 0.3s ease-in-out;

}

.btn1:hover {
    transform: scale(1.05);
}

.btn {
    border: none;
    margin: 0;
    padding: 0;
}

/*  */
.navbar-bg {
    background-image: linear-gradient(to right, #bfe0f5, #F3FAFF);
    background-image: url('images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nav-link {
    font-size: 1.6rem;
    font-family: var(--primary-font);
    margin: 0;
    margin-right: 4rem;
    cursor: pointer;
    color: #2E3947;
    font-weight: 400;
}

/**** HERO SECTION START ****/
.hero-section-content {
    place-content: center;
    width: 94%;
}

.hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
}

.hero-section .grid {
    gap: 6.2rem;
}

.hero-section h1 {
    font-family: var(--primary-font);
    color: #030c68;
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-section h4 {
    font-family: var(--secondary-font);
    font-size: 2.4rem;
    font-weight: 400;
    color: #232c36;
}


/**** HERO SECTION END ****/

/**** CALCULATOR SECTION START ****/
.investing {
    & h3 {
        font-family: var(--primary-font);
        font-weight: 400;

    }

    & span {
        color: #fe7f00;
        font-family: var(--primary-font);
        font-weight: 700;
        font-size: 3.2rem;
    }

    & p {
        font-family: var(--secondary-font);
        font-weight: 400;
        font-size: 2rem;
        color: #2e3947;
        margin: 0;
    }

}

.investing-banner img {
    margin: auto;
    width: 100%;
}

.calculator-container {
    width: 83%;
    margin: auto;
}

.calculator {
    padding: 2.5rem 4rem;
    background-color: #F4FBFF;
    border-radius: 1.2rem;
    width: 100%;
    height: 100%;

    & h4 {
        font-size: 2.4rem;
        font-family: var(--primary-font);
        font-weight: 500;
        padding-top: 2rem;
        margin: 0;
    }

    & p {
        font-size: 1.6rem;
        font-family: var(--secondary-font);
        font-weight: 300;
        padding-top: 1.5rem;
               color: #2e3947;
    }
}

.col:nth-child(2) .calculator {
    background-color: #FFF6F2;
}

.col:nth-child(3) .calculator {
    background-color: #FFF6F2;
}

/**** CALCULATOR SECTION ENDS ****/

/**** PLAN SECTION START ****/
.education-plan {
    padding: 2rem;
    border: 1px solid #dcdcdc71;
    border-radius: 1.2rem;
    cursor: pointer;
    width: 100%;
    height: auto;
    flex-grow: 1;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;

    & p,
    span {
        font-size: 1.2rem;
        font-weight: 300;
        margin: 0;
    }

    & .plan {
        display: flex;
        align-items: center;

        & img {
            width: 5rem;
            margin-right: 2rem;
        }

        & h6 {
            font-size: 1.6rem;
            font-weight: 500;
            margin: 0;

        }

        & p {
            font-weight: 400;
            margin: 0;
        }
    }

    & h4 {
        font-weight: 600;
        margin: 0;

    }
}

.education-plan:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
    border: 1px solid #329bfd;
    background-color: #edf6ff;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

/**** PLAN SECTION ENDS****/
/**** SLIDER START ****/
.heading-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;

    & h3 {
        font-weight: 600;
    }

   }
.heading-section .slider{
    display: flex;
    align-items: center;
    justify-content: center;
}
.heading-section .slider .bi:first-child {
    border: 1px solid #B1B9C5;
    color: #B1B9C5;
    padding: 0.4rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-right: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
        background-color: #030C68;
    }
}

.heading-section .slider .bi:nth-child(2) {
    border: 1px solid #B1B9C5;
    color: #B1B9C5;
    padding: 0.4rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.5rem;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
        background-color: #030C68;
    }
}

.swiper{
    padding: 24px 0px !important;
}

/**** SLIDER ENDS ****/

/**** CHILD EDUCATION SECTION START ****/
.education-bg {
    background-color: #F5F7F9;
    padding: 8rem 6rem;
}

.education-info {
    overflow: hidden;
    padding-right: 6rem;

    & h3 {
        font-weight: 500;
        color: #046FD0;
        font-family: var(--primary-font);
    }

    & .increase-section {
        font-family: var(--primary-font);
        color: black;
        font-weight: 700;

        & img {
            width: 5rem;
        }
    }


    & .education-text {
        margin-top: 2rem;
        font-family: var(--secondary-font);

        & h4 {
            font-weight: 400;
            font-size: 2.4rem;

            & span {
                color: #E77400;
            }
        }

        & h6 {
            font-size: 1.8rem;
            font-weight: 400;
            padding: 2rem 0rem;
        }

        & p {
            color: #546881;
            margin-top: 2rem;
            margin-bottom: 0;
            font-size: 1.4rem;
        }
    }


}

.chart-title {
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

canvas {
    width: 100% !important;
    height: 280px !important;
}

.graph img {
    place-items: center;
    place-content: center;
    width: 40rem;
    height: 22rem;

}

/**** CHILD EDUCATION SECTION START ****/

/**** WORKS SECTION START ****/
.work-content {
    font-family: var(--secondary-font);
    padding-left: 6rem;

    & h4 {
        font-size: 2.8rem;
        font-weight: 600;
    }

    & p {
        font-size: 1.6rem;
        font-weight: 300;
        color: #2E3947;
    }
}

/**** WORKS SECTION ENDS ****/

/**** CONTACT SECTION START ****/

.contact-section {
    position: relative;

    & img {
        width: 100%;
        height: 100%;
        border-radius: 1.2rem;
        object-fit: cover;
        object-position: right;
    }
}

.contact-content {
    position: absolute;
    bottom: 15%;
    left: 7%;
    width: 89%;
    /* padding: 5rem 2rem ; */

    & h4 {
        font-size: 2.2rem;
        width: 79%;
    }

    & p {
        font-size: 1.6rem;
        width: 65%;
    }
}

/**** CONTACT SECTION ENDS ****/

/**** FOOTER SECTION ENDS ****/


footer {
    background-color: #020534;
    color: #D1D5D8;
    /* padding: 4rem 0 2rem; */
    padding: 1.5rem 10rem;

}

.footer-links {

    padding-top: 4rem;
}

footer h5 {
    color: orange;
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
    font-weight: 600;
}

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

footer ul li {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    cursor: pointer;
    color: #D1D5D8;
}

.footer-text img:first-child {
    width: 3.5rem;
}

.footer-icon {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    padding-top: 5rem;
}

.footer-icon img {
    width: 3rem;
    margin-right: 1rem;
    border-radius: 50%;
    border: 1px solid #E6E7F0;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.footer-icon img:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.contact-info img {
    width: 3rem;
    margin-right: 1.2rem;
    border-radius: 50%;
    border: 1px solid #E6E7F0;
    padding: 0.5rem;
}

.contact-info h6 {
    color: #D1D5D8;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
}

.custom-border {
    border-top: 1px solid #4E5277;
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.custom-border p {
    color: #8B8FBA;
    font-size: 1.4rem;
    margin: 0;
}




/**** FOOTER SECTION ENDS ****/

/* media query  */
@media (width <=1400px) {}

@media (width<=1200px) {
    html {
        font-size: 54%;
    }

    .hero-section-img img {
        width: 90%;
    }

}

@media (width <=992px) {
    html {
        font-size: 50%;
    }

    .contact-content {
        bottom: 9%;

        & h4 {
            font-size: 1.7rem;

        }

        & p {
            font-size: 1.4rem;
        }
    }
}



@media (width <=768px) {
    .hero-section-img img {
        width: 70%;
        place-content: center;
        place-items: center;
        object-position: center;
        margin: 0 auto;
        display: block;
    }

    .heading-section h3 {
        font-size: 2.5rem;
    }

    .grid-two--cols {
        grid-template-columns: 1fr;
    }

    .hero-section-content {
        order: 2;
    }

    .hero-section h1 {

        font-size: 4rem;
        font-family: var(--primary-font);
    }

    .contact-content {
        height: 100%;
        width: 100%;
        bottom: -15%;

        & h4 {
            font-size: 2.6rem;
        }

        & p {
            font-size: 1.9rem;
        }
    }
}

@media (width <=620px) {
    .container {
        width: 96%;
        margin: auto;
    }

    .work-content h4 {
        font-size: 2.2rem;
    }

    .heading-section h3 {
        font-size: 2.1rem;
    }
}

@media (width <=520px) {
    .contact-content {
        & h4 {
            font-size: 2.2rem;
        }

        & p {
            font-size: 1.6rem;
        }
    }
}


@media (width <=490px) {
    .heading-section h3 {
        font-size: 2rem;
    }
}

@media (width <=466px) {
    html {
        font-size: 50%;
    }

    .heading-section h3 {
        font-size: 1.8rem;
    }

    .contact-content {
        & h4 {
            font-size: 2rem;
        }

        & p {
            font-size: 1.3rem;
        }
    }
}

@media (width <=402px) {
    .contact-content {
        & h4 {
            font-size: 1.8rem;
        }

        & p {
            font-size: 1.1rem;
        }
    }
}

@media (width <=372px) {
    html {
        font-size: 43.5%;
    }

    .heading-section h3 {
        font-size: 1.8rem;
    }

    .contact-content {
        & h4 {
            font-size: 1.9rem;
        }

        & p {
            font-size: 1rem;
        }
    }
}





/*  */


/* About US page CSS */

.vision-section{
    padding:  64px 0;
    background-color: #FFF6F2;
}

.circle-img{
    position: absolute;
    top: -50%;
    right: 10%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 99;
}

.base-text{
    font-size: 16px;
    font-weight: 400;
    color: #2E3947;
}

.card-heading{
    font-size: 18px;
    font-weight: 600;
    color: #2E3947;
    margin-bottom: 12px;
}

.solution-section{
    padding: 64px 0;
}

.section-heading{
    font-size: 28px;
    font-weight: 600;
    color: #2E3947;
    margin-bottom: 24px;
}


.resources-section{
    margin-top: 42px;
    padding: 32px;
    background-color: #F4FBFF;
    border-radius: 1.2rem;
    margin-bottom: 42px;
}

.resource-card{
    background-color: transparent;
    border-radius: 1.2rem;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e2ecf1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    &:hover{
        background-color: #fff;
        box-shadow: 0px 4px 12px 0px #0000000D;
    }
}

/* Calculator Styles */
.calculator-main-section {
    margin-top: 42px;
    border-radius: 1.2rem;
    padding: 4rem 2rem;
    background-color: #F4FBFF;
    min-height: 100vh;
}

.calculator-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2E3947;
    margin-bottom: 1.5rem;
    font-family: var(--primary-font);
}

.calculator-subtitle {
    font-size: 1.6rem;
    color: #546881;
    font-family: var(--secondary-font);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-card {
    background-color: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-top: 2rem;
}

.calculator-badge {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background-color: #E6F2FC;
    color: #047AE5;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

.input-section {
    padding-right: 2rem;
    justify-content: center;
    gap: 1rem;
}

.input-group {
    margin-bottom: 2rem;
    align-items: start;
    gap: 1rem;
    flex-direction: column;
}

.input-label {
    display: block;
    font-size: 14px !important;
    font-weight: 600;
    color: #2E3947;
    font-family: var(--primary-font);
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-field {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 100%;
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #E2ECF1;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: var(--secondary-font);
    background-color: #fff;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: #047AE5;
    box-shadow: 0 0 0 3px rgba(4, 122, 229, 0.1);
}

.slider {
    height: 6px;
    border-radius: 3px;
    outline: none;
    margin-top: 1rem;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #047AE5;
    border: 3px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #047AE5;
    border: 3px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-invest {
    background-color: #20C997;
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 2.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--primary-font);
    transition: all 0.3s ease;
    margin-top: 2rem;
    width: 100%;
}

.btn-invest:hover {
    background-color: #1BA085;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}

.results-section {
    padding-left: 2rem;
}

.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background-color: #F8FAFC;
    padding: 1.5rem;
    border-radius: 0.8rem;
}

.result-bar {
    width: 4px;
    height: 40px;
    background-color: #047AE5;
    border-radius: 2px;
    margin-right: 1.5rem;
}

.result-content {
    flex: 1;
}

.result-label {
    display: block;
    font-size: 1.2rem;
    color: #546881;
    margin-bottom: 0.5rem;
    font-family: var(--secondary-font);
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2E3947;
    font-family: var(--primary-font);
}

.chart-container {
    margin-top: 3rem;
    height: 300px;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calculator-title {
        font-size: 2.4rem;
    }
    
    .calculator-subtitle {
        font-size: 1.4rem;
    }
    
    .calculator-card {
        padding: 2rem;
    }
    
    .input-section {
        padding-right: 0;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    .results-section {
        padding-left: 0;
    }
    
    .result-value {
        font-size: 1.6rem;
    }
}

/* Contact Us Page Styles */
.contact-main-section {
    margin-top: 42px;
    border-radius: 1.2rem;
    padding: 4rem 2rem;
    background-color: #F4FBFF;
    min-height: 100vh;
}

.contact-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2E3947;
    margin-bottom: 1.5rem;
    font-family: var(--primary-font);
}

.contact-subtitle {
    font-size: 1.6rem;
    color: #546881;
    font-family: var(--secondary-font);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form-card {
    background-color: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-title,
.contact-form-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #2E3947;
    margin-bottom: 2rem;
    font-family: var(--primary-font);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E2ECF1;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #E6F2FC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.8rem;
    color: #047AE5;
}

.contact-details h5 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2E3947;
    margin-bottom: 0.5rem;
    font-family: var(--primary-font);
}

.contact-details p {
    font-size: 1.4rem;
    color: #546881;
    margin-bottom: 0.3rem;
    font-family: var(--secondary-font);
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #E2ECF1;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-family: var(--secondary-font);
    background-color: #fff;
    transition: all 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #047AE5;
    box-shadow: 0 0 0 3px rgba(4, 122, 229, 0.1);
}

.form-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E3947;
    margin-bottom: 0.8rem;
    font-family: var(--primary-font);
}

.btn-contact-submit {
    background-color: #047AE5;
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 2.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--primary-font);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-contact-submit:hover {
    background-color: #0366CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 122, 229, 0.3);
}

.form-check-input:checked {
    background-color: #047AE5;
    border-color: #047AE5;
}

.form-check-label {
    font-size: 1.3rem;
    color: #546881;
    font-family: var(--secondary-font);
}

.faq-section {
    background-color: #fff;
    border-radius: 1.2rem;
    padding: 3rem;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #2E3947;
    font-family: var(--primary-font);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2ECF1;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2E3947;
    margin-bottom: 1rem;
    font-family: var(--primary-font);
}

.faq-answer {
    font-size: 1.4rem;
    color: #546881;
    line-height: 1.6;
    font-family: var(--secondary-font);
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.4rem;
    }
    
    .contact-subtitle {
        font-size: 1.4rem;
    }
    
    .contact-info-card,
    .contact-form-card,
    .faq-section {
        padding: 2rem;
    }
    
    .contact-info-title,
    .contact-form-title,
    .faq-title {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Future Fees Calculator Specific Styles */
.fees-display-card {
    background-color: #FFF6F2;
    border-radius: 0.8rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fee-item:last-child {
    margin-bottom: 0;
}

.fee-label {
    font-size: 1.4rem;
    color: #2E3947;
    font-family: var(--secondary-font);
}

.fee-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2E3947;
    font-family: var(--primary-font);
}

.sip-recommendation-card {
    background-color: #F0FDF4;
    border-radius: 0.8rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.sip-text {
    font-size: 1.4rem;
    color: #2E3947;
    margin-bottom: 1rem;
    font-family: var(--secondary-font);
}

.sip-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: #20C997;
    margin-bottom: 0.5rem;
    font-family: var(--primary-font);
}

.sip-note {
    font-size: 1.2rem;
    color: #546881;
    margin: 0;
    font-family: var(--secondary-font);
}

.disclaimer-card {
    background-color: #FEF3C7;
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.disclaimer-text {
    font-size: 1.2rem;
    color: #546881;
    margin: 0;
    text-align: center;
    font-family: var(--secondary-font);
    line-height: 1.5;
}

/* Future Fees Calculator Responsive Design */
@media (max-width: 768px) {
    .fees-display-card,
    .sip-recommendation-card {
        padding: 1.5rem;
    }
    
    .sip-amount {
        font-size: 2rem;
    }
    
    .fee-value {
        font-size: 1.4rem;
    }
}