html {
  font-size: 14px;
  
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: "Poppins", sans-serif;
}

.main123 {
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px; /* Added gap for spacing between text and images */
    margin-top: 30px; /* Adds spacing from the top */
}

.text {
    max-width: 750px; /* Limits the width to maintain readability */
    text-align: justify; /* Makes text more readable by justifying */
    color: #ffffff; /* Makes all text white */
}

    .text h2 {
        font-weight: 900;
        font-size: 29px; /* Fibonacci sequence-based size for heading */
        margin-bottom: 20px;
        color: #ffffff;
    }

    .text span {
        color: #ffffff;
        display: inline-block; /* Ensures span elements take up space like block elements */
        margin-bottom: 15px; /* Adds space between spans */
        font-size: 14px; /* Adjusted for body text readability */
    }

    .text .instructions {
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 10px;
    }

.instructions {
    margin-top: 0.5rem;
}

.text .bullet-list {
    color: #ffffff;
}

    .text .bullet-list li {
        list-style-type: disc;
        margin-bottom: 10px;
        font-size: 14px; /* Size for bullet points */
    }

.cta {
    font-size: 18px; /* Slightly larger for call-to-action */
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    color: #ffffff;
}

.main123 img {
    width: 35rem !important;
    border-radius: 8px; /* Adds rounded corners to the images */
    transition: transform 0.3s ease; /* Smooth scaling effect on hover */
}

@media screen and (max-width: 750px) {
    .main123 img {
        display: none;
    }

    .main123 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px; /* Added gap for spacing between text and images */
        margin-inline: 10px; /* Adds spacing from the top */
    }
}

.main123 h2 {
    text-align: start;
}

.terms-container {
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px; /* Added gap for spacing between text and images */
    margin-top: 30px; /* Adds spacing from the top */
}

.terms-text {
    max-width: 750px; /* Limits the width to maintain readability */
    text-align: justify; /* Makes text more readable by justifying */
    color: #ffffff; /* Makes all text white */
}

    .terms-text h2 {
        font-weight: 900;
        font-size: 29px; /* Fibonacci sequence-based size for heading */
        margin-bottom: 20px;
        color: #ffffff;
    }

    .terms-text span {
        color: #ffffff;
        font-size: 16px; /* Adjusted for body text readability */
        display: inline-block; /* Makes it behave like a block-level element */
        margin-bottom: 15px; /* Space between spans */
    }

    .terms-text .instructions {
        font-weight: 800;
        color: #ffffff; /* Color for instructions */
        margin-bottom: 10px;
    }

    .terms-text .bullet-list {
        color: #ffffff;
        margin-left: 20px; /* Indent for bullet points */
    }

        .terms-text .bullet-list li {
            list-style-type: disc;
            margin-bottom: 10px;
            font-size: 14px; /* Size for bullet points */
        }

.cta {
    font-size: 18px; /* Slightly larger for call-to-action */
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    color: #ffffff;
}

@media screen and (max-width: 750px) {
    .terms-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px; /* Added gap for spacing */
        margin-inline: 10px; /* Adds spacing from the top */
    }
}

.terms-container h2 {
    text-align: start;
}

.accordion-item {
    border: none !important;
}