:root {
    --f3-icon1: #fb326c;
    --f3-icon2: #fdc918;
    --f3-icon3: #5482c9;
}

/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
} */

.terms-container {
    max-width: 900px;
    margin: 50px auto;
    background: #000000;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.terms-title {
    font-weight: bold;
    background: linear-gradient(
    20deg,
    rgba(73, 123, 181, 0.9) 0%,
    rgba(252, 53, 110, 0.9) 50%,
    rgba(255, 180, 64, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
    font-size:70px;
    text-align: center;
    margin-bottom: 5%;
    
}

/* media query starts */
@media screen and (min-width: 320px) and (max-width: 425px) {
    .terms-title {
        font-size: 42px !important; 
        width: 100%;
    }
}

@media screen and (min-width: 426px) and (max-width: 575px) {
    .terms-title {
        font-size: 54px !important; 
        width: 100%;
    }
}

@media screen and (min-width: 576px) and (max-width: 700px) {
    .terms-title {
        font-size: 62px !important;
        width: 100%;
    }
}

@media screen and (min-width: 701px) and (max-width: 1024px) {
    .terms-title {
        font-size: 70px !important; 
        width: 100%;
    }
}

@media screen and (min-width: 1025px) {
    .terms-title {
        font-size: 85px !important; 
        width: 100%;
    }
}


.terms-heading {
    color:#fb326c;
    /* border-bottom: 2px solid var(--f3-icon3); */
    padding-bottom: 10x;
    margin-top: 20px;
}

.terms-text {
    font-size: 16px;
    line-height: 1.6;
}

.terms-list {
    padding-left: 20px;
}

.terms-list-item {
    margin-bottom: 8px;
}

.terms-link {
    color: var(--f3-icon1);
    text-decoration: none;
    font-weight: bold;
}

.terms-link:hover {
    text-decoration: underline;
}
