#heading{
    background: #efefef;
}
.heading-1{
    font-size: 60px;
    font-weight: 700;
    line-height: 65px;
}
.gradient-text {
    background: linear-gradient(to right, #0984e3, #00cec9); /* Customize colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 5px 5px rgba(0,0,0,0.1);
}
.accordianContentDiv {
    display: none;
    padding: 15px;
    border-top: 1px solid #ccc;
    position: relative;
}

dl{
    list-style: none;
}

.accord-plus {
    content: '+';
    display: inline-block;
    margin-left: 10px;
    font-weight: bold;
    font-size: 18px;
}

h4.active .accor-plus::before {
    content: '-';
}

dl h4 {
    cursor: pointer;
    background: #f5f5f5;
    padding: 10px;
    margin: 0;
    font-size: 18px;
    border: 1px solid #ddd;
}

#footer{
    background: #1e3799;
    color: #fff;
    padding: 80px 0;
}

.footer-link{
    color: #fff;
    text-decoration: none;
    display: block;
}

.icon-box{
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    margin: 5px 0;
    background: #fff;
    border-radius: 3px;
    color: #1e3799;
    padding: 10px;
}

.icon{
    color: #fff;
    background: #1e3799;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 48px;
}

#thanks{
    background-image: linear-gradient(to right, #0984e3, #00cec9);
    height: 100vh;
    width: 100vw;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks{
    background: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
}
@media screen and (max-width: 600px) {
    .heading-1{
        font-size: 30px;
        line-height: 34px;
    }
}