/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Gilroy-Light';
    src: url('../fonts/Gilroy-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
font-family: 'Gilroy-ExtraBold';
src: url('../fonts/Gilroy-ExtraBold.otf') format('opentype');
font-weight: normal;
font-style: normal;
}

body {
    font-family: 'Gilroy-Light', Arial, sans-serif;
}

#hero {
    h1 {
        font-size: 84px;
        margin-bottom: 1rem;
    }
    p {
        font-size: 28px;
    }

}

#cards {
    padding-top: 48px !important;
    h3 {
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 1.6rem;
        font-size: 64px;
    }
    p{
        font-size: 24px;
    }
}

#features {
    h2 {
        font-size: 56px;
        margin-bottom: 48px;
    }
    img {
        max-width: 96px;
        height: 92px;
    }
    h4 {
        font-family: 'Gilroy-ExtraBold' !important;
        font-size: 28px;
    }
    p {
        font-size: 18px;
    }
    .steps-section {
        @media (min-width: 768px) {
            padding: 5rem 12rem !important;
        }
    }
    #why-choose {
        img {
            max-width: 120px;
            height: auto;
        }
    }
}

#cta {
    clip-path: ellipse(70% 100% at 50% 100%);
    h2:first-of-type {
        padding-top: 28px;
    }
    h2 {
        font-size: 48px;
    }
    h4 {
        font-family: 'Gilroy-ExtraBold' !important;
        font-size: 18px;
        margin-bottom: 0;
    }
    a {
        margin-top: 36px;
        padding: 12px 24px;
        text-decoration: none;
    }
}

.izzygo-bold {
    font-family: 'Gilroy-ExtraBold';
}

.step-circle {
    width: 84px;
    height: 84px;
    min-width: 84px;
    min-height: 84px;
    border-radius: 50%;
    border: 6px solid #fff;
    background-color: transparent;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 32px;
}

/* Ensuring even spacing */
.step-content {
    flex-grow: 1;
    align-self: flex-start; /* Align content to top so titles line up */
}

/* Align step circles with the title text, not center of content */
.step-row {
    align-items: flex-start !important;
}

.step-circle {
    margin-top: 0.25rem; /* Fine-tune alignment with h4 text baseline */
}

/* Fix for mobile: Keep text & circle in one line */
@media (max-width: 767px) {
    .step-row {
        display: flex;
        align-items: center; /* Align text with circle */
        flex-direction: row !important; /* Force side-by-side layout */
    }
}

.izzygo-footer {
    padding-bottom: 12px;
    p,a {
        font-size: 12px;
        margin-bottom: 0 !important;
    }
}

.navbar-terms, .footer-terms {
    .navbar-toggler, .navbar-collapse, .footer-menu, .footer-hyperlink {
        display: none !important;
    }
}

.terms-n-conditions {
    h4 {
        font-size: 20px;
        font-weight: bold;
    }
    h4:nth-of-type(n+2) {
        margin-top: 24px;
    }
    p {
        margin-bottom: 8px;
    }
}

.modal-body {
    .terms-title {
        display: none !important;
    }
}