/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E85A24;
    --primary-dark: #D14E1C;
    --primary-light: #F27B4D;
    --secondary: #1E3A5F;
    --secondary-light: #2A4A73;
    --accent-blue: #00A0E3;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F5F7FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline svg {
    transition: transform 0.3s ease;
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-accent {
    color: var(--secondary);
}

.logo-tagline {
    font-size: 10px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2px;
}

/* Navigation */
.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    fill: currentColor;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-link {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-link:hover {
    filter: brightness(1.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list li a,
.mobile-dropdown-toggle {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.mobile-dropdown-toggle {
    cursor: pointer;
}

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    display: none;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li {
    border-bottom: none;
}

.mobile-dropdown-menu li a {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.mobile-login {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white !important;
    text-align: center;
    border-radius: 8px;
    margin-top: 10px;
}

/* Hero Section */
.hero-section {
    padding-top: 70px;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-bg {
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.slide-home {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.slide-personal {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2563EB 100%);
}

.slide-business {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.slide-left {
    text-align: center;
}

.slide-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.slide-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.slide-center {
    display: flex;
    justify-content: center;
}

.slide-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.slide-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.slide-right {
    display: flex;
    justify-content: center;
}

.services-box {
    background: var(--secondary);
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
}

.services-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

.services-list {
    list-style: none;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 6px 0;
}

/* Slide Alternative Layout */
.slide-content-alt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.slide-text {
    color: white;
}

.slide-text .slide-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.slide-text .slide-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
}

.slide-rate-box {
    display: flex;
    justify-content: center;
}

.rate-circle {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    color: white;
}

.rate-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.rate-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.rate-sublabel {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 30px;
}

/* Stats Bar */
.stats-bar {
    background: var(--secondary);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number,
.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Trending Section */
.trending-section {
    padding: 60px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.trending-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.trending-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.trending-card:hover {
    box-shadow: var(--shadow-hover);
}

.trending-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.trending-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.trending-rate-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.rate-text {
    font-size: 13px;
    color: var(--text-light);
}

.rate-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.trending-card:hover .rate-badge {
    transform: scale(1.1);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-subtitle {
    display: block;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.about-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-title span {
    color: var(--primary);
}

.about-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Why Choose Us Section */
.why-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.text-center {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.why-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(232, 90, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.why-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* How It Works Section */
.how-section {
    padding: 60px 0;
    background: white;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-gray);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
}

.how-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(232, 90, 36, 0.2);
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.step-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.step-link:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #F0F7FF, white);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.quote-icon {
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-left: 8px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonials-dots .dot {
    background: var(--border-color);
}

.testimonials-dots .dot.active {
    background: var(--primary);
}

/* CTA Section */
.cta-section {
    background: var(--secondary);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 90, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.info-value:hover {
    color: var(--primary);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 90, 36, 0.1);
}

.form-textarea {
    resize: vertical;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo .logo-main {
    color: white;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-form .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .slide-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .slide-left {
        text-align: left;
    }

    .slide-title {
        font-size: 48px;
    }

    .slide-content-alt {
        grid-template-columns: 2fr 1fr;
        text-align: left;
    }

    .slide-text .slide-title {
        font-size: 56px;
    }

    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (min-width: 1024px) {
    .trending-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title {
        font-size: 36px;
    }

    .about-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 36px;
    }
}


/* ==========================================
   About Page Specific Styles
   ========================================== */

/* About Hero Section */
.about-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-main-content {
    order: 2;
}

.about-sidebar {
    order: 1;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(232, 90, 36, 0.1);
    border-radius: 20px;
}

.about-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 24px;
}

.about-text-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Founder Section */
.founder-section {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-image-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(232, 90, 36, 0.3);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.founder-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Sidebar */
.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.sidebar-tag {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--primary);
}

.contact-phone svg,
.contact-email svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* History Section */
.history-section {
    padding: 60px 0;
    background: white;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.history-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.history-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.history-content .section-tag {
    margin-bottom: 20px;
}

.history-years {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.history-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.history-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.history-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* About Page Why Section Override */
.about-why-section {
    background: var(--bg-light);
}

.about-why-section .why-card {
    text-align: left;
    padding: 32px;
}

.about-why-section .why-icon {
    margin: 0 0 20px 0;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .about-hero-grid {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }

    .about-main-content {
        order: 1;
    }

    .about-sidebar {
        order: 2;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .history-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .history-years {
        font-size: 64px;
    }

    .history-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .about-hero-title {
        font-size: 42px;
    }

    .founder-section {
        margin-top: 60px;
    }

    .founder-image-wrap {
        width: 150px;
        height: 150px;
    }
}

.credit-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.credit-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(232, 90, 36, 0.1);
    border-radius: 50%;
}

.credit-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.credit-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.credit-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.credit-hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.credit-cards-display {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
}

.credit-card-img {
    position: absolute;
    width: 280px;
    height: 180px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.credit-card-img:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.credit-card-img:nth-child(2) {
    top: 30px;
    left: 20%;
    transform: rotate(-15deg);
    z-index: 2;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.credit-card-img:nth-child(3) {
    top: 30px;
    right: 20%;
    transform: rotate(15deg);
    z-index: 2;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Features Section */
.credit-features-section {
    padding: 80px 0;
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-intro p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.credit-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.credit-feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.credit-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.credit-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.credit-feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Card Types Section */
.card-types-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.card-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card-type-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card-type-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-type-header {
    background: var(--secondary);
    color: white;
    padding: 24px;
    text-align: center;
}

.card-type-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-type-header .rate-tag {
    display: inline-block;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-type-body {
    padding: 24px;
}

.card-type-body ul {
    list-style: none;
    margin-bottom: 24px;
}

.card-type-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.card-type-body li:last-child {
    border-bottom: none;
}

.card-type-body li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.benefits-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.benefits-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: rgba(232, 90, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.benefits-list p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.credit-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

.credit-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.credit-contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.credit-contact-info>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details-list {
    list-style: none;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-details-list strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.contact-details-list span {
    color: rgba(255, 255, 255, 0.8);
}

.credit-contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.credit-contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 90, 36, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Responsive */
@media (min-width: 768px) {
    .credit-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .credit-hero-content h1 {
        font-size: 48px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .credit-contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-image {
        order: 2;
    }

    .benefits-content {
        order: 1;
    }
}

@media (min-width: 1024px) {
    .credit-hero-content h1 {
        font-size: 56px;
    }

    .section-intro h2,
    .benefits-content h2,
    .credit-contact-info h2 {
        font-size: 40px;
    }
}

/* Contact Page Additional Styles */
.contact-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(232, 90, 36, 0.1);
    border-radius: 50%;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 60px 0;
    background: var(--bg-light);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-info-card .hours {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Main Contact Section */
.contact-main-section {
    padding: 80px 0;
    background: white;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-form-wrapper>p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 90, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

/* Contact Image Side */
.contact-image-wrapper {
    position: relative;
}

.contact-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    max-width: 280px;
}

.contact-floating-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-floating-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
    background: white;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: var(--text-gray);
}

.map-placeholder svg {
    margin-bottom: 16px;
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.contact-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Responsive */
@media (min-width: 768px) {
    .contact-hero-content h1 {
        font-size: 56px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-image-wrapper {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (min-width: 1024px) {
    .contact-hero-content h1 {
        font-size: 64px;
    }

    .contact-form-wrapper h2 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }
}

/* Personal Loan Page Additional Styles */
.loan-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.loan-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(232, 90, 36, 0.1);
    border-radius: 50%;
}

.loan-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.loan-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.loan-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.loan-hero-image {
    position: relative;
}

.loan-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.loan-features-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    max-width: 250px;
}

.loan-features-float h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loan-features-float ul {
    list-style: none;
    font-size: 14px;
    color: var(--text-gray);
}

.loan-features-float li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.loan-features-float li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

/* Content Section */
.loan-content-section {
    padding: 80px 0;
    background: white;
}

.loan-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.loan-main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.loan-main-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 16px;
}

.loan-main-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.loan-main-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.loan-main-content li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.steps-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    padding: 80px 0;
    background: white;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.document-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
}

.document-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.document-card h3 svg {
    color: var(--primary);
}

.document-card ul {
    list-style: none;
}

.document-card li {
    font-size: 15px;
    color: var(--text-gray);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.document-card li:last-child {
    border-bottom: none;
}

.document-card li::before {
    content: '•';
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

.eligibility-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.eligibility-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.eligibility-section .section-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.eligibility-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.eligibility-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eligibility-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Features Grid */
.features-grid-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-box {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-box h4 svg {
    color: var(--primary);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.loan-cta-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.loan-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.loan-cta-section p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Bar */
.contact-bar {
    background: var(--primary);
    padding: 40px 0;
    color: white;
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-bar-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-bar-item div strong {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.contact-bar-item div span,
.contact-bar-item div a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive */
@media (min-width: 768px) {
    .loan-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .loan-hero-content h1 {
        font-size: 52px;
    }

    .loan-content-grid {
        grid-template-columns: 2fr 1fr;
    }

    .loan-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

@media (min-width: 1024px) {
    .loan-hero-content h1 {
        font-size: 56px;
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .loan-features-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }
}

/* Business Loan Page Additional Styles */
.business-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0f2744 100%);
    position: relative;
    overflow: hidden;
}

.business-hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: rgba(232, 90, 36, 0.08);
    border-radius: 50%;
}

.business-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.business-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.business-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.business-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.business-stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.business-stat-item strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.business-stat-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.business-hero-image {
    position: relative;
}

.business-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-section-business {
    padding: 80px 0;
    background: white;
}

.benefits-section-business .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-section-business .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefits-grid-business {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card-business {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card-business:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.benefit-icon-business {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.benefit-card-business h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card-business p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Content Section */
.business-content-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.business-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.business-main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.business-main-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 16px;
}

.business-main-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.business-main-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.business-main-content li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.business-main-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
}

.business-main-content li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 4px;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

/* Features Section */
.business-features-section {
    padding: 80px 0;
    background: white;
}

.business-features-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.business-features-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.business-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.business-feature-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid var(--primary);
}

.business-feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-feature-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Documents Section */
.documents-section-business {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

.documents-section-business .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.documents-section-business .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.documents-section-business .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.documents-grid-business {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.document-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.document-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.document-category ul {
    list-style: none;
}

.document-category li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.document-category li:last-child {
    border-bottom: none;
}

.document-category li::before {
    content: '›';
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

/* Eligibility Section */
.eligibility-section-business {
    padding: 80px 0;
    background: white;
}

.eligibility-section-business .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.eligibility-section-business .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.eligibility-grid-business {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.eligibility-card-business {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.eligibility-card-business:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.eligibility-icon-business {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.eligibility-card-business h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.eligibility-card-business p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Types Section */
.types-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.types-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.types-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.type-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(232, 90, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.type-card:hover .type-icon {
    background: var(--primary);
    color: white;
}

.type-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.type-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.business-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: white;
}

.business-cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.business-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (min-width: 768px) {
    .business-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .business-hero-content h1 {
        font-size: 52px;
    }

    .business-content-grid {
        grid-template-columns: 2fr 1fr;
    }

    .business-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

@media (min-width: 1024px) {
    .business-hero-content h1 {
        font-size: 56px;
    }

    .business-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Table Section */
.table-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.table-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.table-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.table-section .section-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.table-size {
    width: 100%;
    min-width: 800px;
}

.offer-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 14px;
}

.offer-table thead {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

.offer-table th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.offer-table th:first-child {
    border-radius: 16px 0 0 0;
}

.offer-table th:last-child {
    border-radius: 0 16px 0 0;
}

.offer-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.offer-table tbody tr:hover {
    background: rgba(232, 90, 36, 0.05);
}

.offer-table tbody tr:last-child {
    border-bottom: none;
}

.offer-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.offer-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

.offer-table td {
    padding: 16px;
    color: var(--text-gray);
}

.offer-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.apply-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 90, 36, 0.3);
}

/* Loan Hero Section */
.loan-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.loan-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.loan-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.loan-hero-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.loan-hero-image {
    position: relative;
}

.loan-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
}

.loan-features-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    max-width: 280px;
}

.loan-features-float h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loan-features-float ul {
    list-style: none;
    padding: 0;
}

.loan-features-float li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.loan-features-float li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Loan Content Section */
.loan-content-section {
    padding: 80px 0;
    background: white;
}

.loan-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.loan-main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.loan-main-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 16px;
}

.loan-main-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.loan-main-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.loan-main-content li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.loan-main-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.loan-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.steps-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.steps-section .section-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    padding: 80px 0;
    background: white;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.document-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
}

.document-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.document-card h3 svg {
    color: var(--primary);
}

.document-card ul {
    list-style: none;
    padding: 0;
}

.document-card li {
    font-size: 15px;
    color: var(--text-gray);
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.document-card li:last-child {
    border-bottom: none;
}

.document-card li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.eligibility-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.eligibility-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.eligibility-section .section-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.eligibility-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.eligibility-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-card h3 svg {
    color: var(--primary);
}

.eligibility-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Features Grid Section */
.features-grid-section {
    padding: 80px 0;
    background: white;
}

.features-grid-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.features-grid-section .section-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--primary);
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-box h4 svg {
    color: var(--primary);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Loan CTA Section */
.loan-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    text-align: center;
    color: white;
}

.loan-cta-section h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
}

.loan-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Bar */
.contact-bar {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-bar-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.contact-bar-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.contact-bar-item a,
.contact-bar-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.contact-bar-item a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
    .loan-hero-grid {
        grid-template-columns: 1fr;
    }

    .loan-hero-content h1 {
        font-size: 36px;
    }

    .loan-content-grid {
        grid-template-columns: 1fr;
    }

    .loan-sidebar {
        position: static;
    }

    .loan-features-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .loan-hero-content h1 {
        font-size: 28px;
    }

    .loan-cta-section h2 {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   loan-apply.css  –  MyLoan Application Form Styles
   ============================================================ */

/* ── Apply Hero ─────────────────────────────────────────── */
.apply-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 60%, #1a4a80 100%);
    position: relative;
    overflow: hidden;
}

.apply-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.apply-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.apply-badge {
    display: inline-block;
    background: rgba(232, 90, 36, 0.2);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(232, 90, 36, 0.3);
}

.apply-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
}

.apply-hero-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.apply-hero-stats {
    display: flex;
    gap: 32px;
}

.apply-stat {
    display: flex;
    flex-direction: column;
}

.apply-stat strong {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-light);
}

.apply-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.apply-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ── Form Section ────────────────────────────────────────── */
.apply-form-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

/* Alert */
.alert {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 28px;
    font-size: 14px;
}

.alert-danger {
    background: #fff1f0;
    border: 1px solid #ffccc7;
    color: #cf1322;
}

.alert ul {
    margin: 6px 0 0 16px;
    padding: 0;
}

/* ── Progress Bar ────────────────────────────────────────── */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.progress-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
}

.progress-step.active .progress-dot,
.progress-step.completed .progress-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.progress-step span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.progress-step.active span,
.progress-step.completed span {
    color: var(--primary);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 8px;
    margin-bottom: 24px;
    transition: background 0.4s ease;
    min-width: 40px;
    max-width: 80px;
}

.progress-line.done {
    background: var(--primary);
}

/* ── Form Steps ──────────────────────────────────────────── */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Form Card ───────────────────────────────────────────── */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--bg-light);
}

.form-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.form-card-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.form-card-header p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ── Form Grid ───────────────────────────────────────────── */
.form-grid {
    display: grid;
    gap: 20px;
}

.form-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.form-group-full {
    grid-column: 1 / -1;
}

/* ── Form Controls ───────────────────────────────────────── */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-label.required::after {
    content: ' *';
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background: white;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 90, 36, 0.12);
}

.form-control.is-invalid {
    border-color: #ff4d4f;
}

.invalid-feedback {
    display: block;
    font-size: 12px;
    color: #ff4d4f;
    margin-top: 5px;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Input with prefix */
.input-with-prefix {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.input-with-prefix:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 90, 36, 0.12);
}

.input-prefix {
    padding: 12px 14px;
    background: var(--bg-light);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    border-right: 1.5px solid var(--border-color);
    white-space: nowrap;
}

.input-with-prefix .form-control {
    border: none;
    border-radius: 0;
    box-shadow: none;
    flex: 1;
}

.input-with-prefix .form-control:focus {
    box-shadow: none;
}

/* Loan amount display */
.loan-amount-display {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 6px;
    min-height: 18px;
}

/* ── Employment Type Radio Cards ─────────────────────────── */
.employment-type-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 10px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    text-align: center;
}

.radio-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.radio-card-body span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.2s ease;
}

.radio-card input:checked+.radio-card-body {
    border-color: var(--primary);
    background: rgba(232, 90, 36, 0.04);
}

.radio-card input:checked+.radio-card-body .radio-card-icon {
    background: var(--primary);
    color: white;
}

.radio-card input:checked+.radio-card-body span {
    color: var(--primary);
}

.radio-card-body:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 90, 36, 0.1);
}

/* ── Loan Type Grid ──────────────────────────────────────── */
.loan-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.loan-type-card {
    cursor: pointer;
}

.loan-type-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.loan-type-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 12px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    text-align: center;
}

.loan-type-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.loan-type-body span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
}

.loan-type-card input:checked+.loan-type-body {
    border-color: var(--primary);
    background: rgba(232, 90, 36, 0.04);
}

.loan-type-card input:checked+.loan-type-body .loan-type-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.loan-type-card input:checked+.loan-type-body span {
    color: var(--primary);
}

.loan-type-body:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(232, 90, 36, 0.12);
}

/* ── Radio inline ────────────────────────────────────────── */
.radio-inline-group {
    display: flex;
    gap: 20px;
}

.radio-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.radio-inline input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

/* ── Document Upload ─────────────────────────────────────── */
.doc-section {
    margin-bottom: 36px;
}

.doc-section:last-of-type {
    margin-bottom: 0;
}

.doc-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.file-upload-area {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-light);
    min-height: 120px;
    overflow: hidden;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--primary);
    background: rgba(232, 90, 36, 0.03);
}

.file-upload-area.has-file {
    border-style: solid;
    border-color: #52c41a;
    background: #f6ffed;
}

.file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    gap: 6px;
    color: var(--text-gray);
    pointer-events: none;
}

.file-upload-ui svg {
    color: var(--text-light);
}

.file-upload-area.has-file .file-upload-ui svg {
    color: #52c41a;
}

.file-upload-ui p {
    font-size: 13px;
    margin: 0;
    color: var(--text-dark);
}

.file-upload-ui span {
    font-size: 12px;
    color: var(--text-light);
}

.file-preview {
    display: none;
    padding: 10px 16px;
    background: #f6ffed;
    border-top: 1px solid #b7eb8f;
    font-size: 12px;
    color: #389e0d;
    font-weight: 600;
    align-items: center;
    gap: 8px;
}

.file-preview.visible {
    display: flex;
}

/* ── Terms ───────────────────────────────────────────────── */
.terms-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 600;
}

/* ── Form Navigation ─────────────────────────────────────── */
.form-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.btn-next,
.btn-prev {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-next {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.btn-next:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 90, 36, 0.3);
}

.btn-prev {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-prev:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.btn-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 90, 36, 0.35);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ── Info Bar ────────────────────────────────────────────── */
.apply-info-bar {
    background: var(--secondary);
    padding: 30px 0;
}

.info-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.info-bar-item svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.info-bar-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.info-bar-item span,
.info-bar-item a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.info-bar-item a:hover {
    color: var(--primary-light);
}

/* ── Success Page ────────────────────────────────────────── */
.success-section {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-card {
    max-width: 560px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #52c41a, #73d13d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 28px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-card h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.success-details {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.success-detail-row:last-child {
    border-bottom: none;
}

.success-detail-row span {
    color: var(--text-gray);
}

.success-detail-row strong {
    color: var(--text-dark);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fff7e6;
    color: #d46b08;
    border: 1px solid #ffd591;
}

.success-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 13px;
    color: var(--text-gray);
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 28px;
}

.success-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 24px;
}

.success-contact {
    font-size: 14px;
    color: var(--text-gray);
}

.success-contact a {
    color: var(--primary);
    font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .employment-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .loan-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .apply-hero {
        padding: 90px 0 50px;
    }

    .apply-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apply-hero-text h1 {
        font-size: 32px;
    }

    .apply-hero-image {
        display: none;
    }

    .apply-hero-stats {
        gap: 20px;
    }

    .form-card {
        padding: 24px 20px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: 1;
    }

    .employment-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loan-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doc-grid {
        grid-template-columns: 1fr;
    }

    .form-progress {
        gap: 0;
    }

    .progress-step span {
        display: none;
    }

    .progress-dot {
        width: 38px;
        height: 38px;
    }

    .progress-line {
        min-width: 20px;
        max-width: 40px;
    }

    .info-bar-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .success-card {
        padding: 36px 24px;
    }

    .success-actions {
        flex-direction: column;
    }

    .form-nav {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn-next,
    .btn-prev,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .employment-type-grid {
        grid-template-columns: 1fr 1fr;
    }

    .loan-type-grid {
        grid-template-columns: 1fr 1fr;
    }
}