/* Core Theme */
body {
    font-family: 'Satoshi', sans-serif;
    background-color: #ffffff;
    color: #1b2a4e;
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #110735;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
}

/* Navigation Links */
.nav-link{
    font-size: clamp(1rem, 1vw + 0.25rem, 1.05rem);
    /*padding: 0.5rem 0.75rem;*/
    position: relative;
    font-weight: 600;
    transition: color 0.3s ease;
    color: #1b2a4e !important;
}

.nav-link-footer {
    font-size: clamp(0.85rem, 0.6vw + 0.25rem, 0.95rem);
    padding: 0.25rem 0.5rem;
    position: relative;
    font-weight: 400;
    transition: color 0.3s ease;
    color: #ffffff !important; /* White for footer */
}

.nav-link::after,
.nav-link-footer::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #f4c542;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link-footer:hover::after {
    width: 100%;
}

.nav-link:hover,
.nav-link-footer:hover {
    color: #f4c542 !important;
}

/* Buttons */
.btn-primary {
    background-color: #fbe19a;
    border-color: #fbe19a;
    color: #1b2a4e;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #f4c542;
    border-color: #f4c542;
    color: white;
}

.btn-outline-secondary {
    color: #1b2a4e;
    border-color: #fbe19a;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #f4c542;
    border-color: #f4c542;
    color: white;
}

.btn {
    border-radius: 30px;
    transition: all 0.2s ease-in-out;
}

/* Step Icons and Lines */
.step-icon {
    width: 24px;
    height: 24px;
    background-color: #f4c542;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b2a4e;
}

.step-line {
    border-left: 2px dashed #f4c542;
    height: 75%;
    position: relative;
    top: 5px;
}

.step-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-flow{
    min-height: 120px;
}

/* Utility & Layout */
.lead,
.text-muted,
p {
    color: #1b2a4e;
    font-size: clamp(0.95rem, 1vw + 0.3rem, 1.1rem);
}

a {
    text-decoration: none;
}

.img-fluid {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

section.bg-light {
    background-color: #f9fbff !important;
}

h2 span.highlight {
    color: #bfa75c;
}

.badge {
    background-color: #fbe19a;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.6em 1.5em;
    /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);*/
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-copy {
    font-size: clamp(0.85rem, 0.6vw + 0.25rem, 0.95rem);
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: 0.85;
}

.brand-name {
    font-weight: 600;
    opacity: 1;
    letter-spacing: 0.5px;
}

/* Optional Responsive Margin Fix */
@media (max-width: 576px) {
    h1 {
        margin-bottom: 1rem;
    }
}
