:root {
    --primary-purple: #675FFF;
    --badge-background: #E6F2FF;
    --badge-text: #0267F7;
    --text-dark: #161616;
    --text-gray: #393939;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--text-dark);
}

.page-header {
    margin: 0 200px;
}

/* .page-wrapper {
    max-width: 1440px;
    margin: 0 100px;
    padding: 0 20px;
} */

/* Header Styles */
header {
    margin-top: 20px;
}

.logo img {
    height: 40px;
}

.header-actions {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
}

.signup-btn {
    background-color: var(--primary-purple);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
}

/* Main Content Styles */
main {
    margin-top: 60px;
}

.badge-container .badge {
    background-color: var(--badge-background);
    color: var(--badge-text);
    font-size: 14px;
    padding: 6px 16px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.6;
}

.hero-image-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 500px;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        max-width: 100%;
    }
}

/*Features Section*/
.features-section {
    padding: 80px 0;
}

.feature-images{
    padding-left: 150px;
}

.feature-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box::after {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 2px solid white;
    border-radius: 10px;
    top: -2px;
    left: -2px;
}

.title-divider .divider-line {
    transform: rotate(90deg);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .features-section {
        padding: 60px 0;
    }

    .image-stack {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 32px;
    }

    .feature-item {
        margin-bottom: 30px;
    }
}

/*Global reach section*/
.global-reach {
    padding: 80px 0;
}

.section-badge {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.country-name {
    font-size: 16px;
    color: var(--text-dark);
}

.flag-container {
    flex-shrink: 0;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .global-reach {
        padding: 40px 0;
    }

    .display-4 {
        font-size: 32px;
    }

    .country-item {
        margin-bottom: 30px;
    }
}

/*How it works section*/
.how-it-works {
    padding: 80px 0;
}

.steps-list {
    position: relative;
}

.step-item {
    border-left: 2px solid #393939;
    position: relative;
}

.step-item.active {
    border-color: #1EC478;
}

.decorative-dots {
    left: 15px;
    top: 80px;
    width: 24px;
    height: 24px;
}

/* .illustration-container {
    background: #F4F4F4 !important;
    margin-top: 290px !important;
    max-width: 515px !important;
    height: 390px !important;
} */

@media (max-width: 992px) {
    .how-it-works {
        padding: 60px 0;
    }

    h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .illustration-container {
        margin-top: 40px;
        max-width: 100%;
    }

    .step-item {
        padding-left: 20px !important;
    }
}

/*Benefits section*/
.benefits {
    padding-top: 80px;
    height: 950px;
}

.benefit-item {
    max-width: 317px;
}

/* .benefits-image{
    position: absolute !important;
    right: 0;
} */

@media (max-width: 768px) {
    .benefits {
        padding-top: 60px;
    }

    h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .benefit-item {
        max-width: 100%;
    }

    .decorative-square {
        left: 30px !important;
        top: 40px !important;
    }
}

/*Footer section*/
.footer-section {
    background-color: #161616;
    color: #E0E0E0;
}

.footer-section h5 {
    font-size: 18px;
    font-weight: 700;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section hr {
    border-color: #393939;
}

.footer-section .btn-primary:hover {
    background-color: #574fff; /* slightly darker purple on hover */
}

h3 {
    white-space: nowrap;
    font-size: 20px;
  }

