code, kbd, pre, samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0052CC;
    --secondary-color: #172B4D;
    --accent-color: #00B8D9;
    --text-dark: #172B4D;
    --text-light: #5E6C84;
    --background-light: #F4F5F7;
    --white: #FFFFFF;
    --border-color: #DFE1E6;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #F5F5F0;
    position: relative;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0747A6;
}

.btn-secondary {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: var(--primary-color);
}

.btn-cta {
    background: #6B7280; /* neutral slate */
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #0747A6;
    text-decoration: underline;
}

.hero-with-solutions {
    background: #F5F5F0;
    padding: 4rem 0 6rem 0;
}

.hero-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title sup {
    font-size: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.solutions-preview-side {
    background: #F5F5F0;
    padding: 3rem 2rem;
    border-radius: 16px;
}

.ma-diagram {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.diagram-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-family: inherit;
    background: #F5F5F0;
    padding: 0 1rem;
    display: inline-block;
    position: relative;
    z-index: 3;
}

.outer-ellipse {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: calc(100% - 0.5rem);
    z-index: 1;
    pointer-events: none;
}

.circles-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:  0rem;
    padding: 0.5rem 1rem 1rem 1rem;
    margin: 0 auto;
    z-index: 2;
}

.circle-wrapper {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
}

.process-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 2px solid #F5A623;
    background: #F5F5F0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-circle:hover {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #F5A623 0%, #FDB913 100%);
    border-color: #F5A623;
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.circle-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.checkmark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F5A623;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.checkmark svg {
    width: 20px;
    height: 20px;
}

.process-circle:hover .checkmark {
    background: #F5F5F0;
    transform: scale(0.9);
}

.circle-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.process-circle:hover .circle-label {
    color: white;
    margin-bottom: 0.5rem;
}

.circle-detail {
    font-size: 0.85rem;
    color: var(--secondary-color);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    line-height: 1.4;
}

.process-circle:hover .circle-detail {
    opacity: 1;
    max-height: 100px;
    color: white;
}

.dashboard-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-top: 1rem;
    position: relative;
    z-index: 3;
    background: #F5F5F0;
    padding: 0 1rem;
    display: inline-block;
}

.loan-agency-section {
    margin: 2rem 0 0 0;
    position: relative;
}

.loan-agency-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.loan-agency-box {
    border: none;
    border-radius: 0;
    padding: 1.5rem 2rem 2.5rem 2rem;
    text-align: center;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: visible;
    z-index: 2;
}


.loan-agency-box:hover {
    transform: scale(1);
}

.loan-agency-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.loan-agency-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: inherit;
    margin-bottom: 0.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 0 1rem;
    z-index: 3;
    background: #F5F5F0;
}

.loan-agency-detail {
    font-size: 0.85rem;
    color: var(--secondary-color);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
}

.loan-agency-box:hover .loan-agency-detail {
    opacity: 1;
    max-height: 100px;
    margin-top: 1rem;
}

.value-prop {
    padding: 5rem 0;
    background: #F5F5F0;
    text-align: center;
}

.value-prop-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-color);
    max-width: 900px;
    margin: 0 auto;
}

.stats {
    padding: 4rem 0;
    background: var(--background-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-number sup {
    font-size: 2rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

.clients {
    padding: 4rem 0;
    background: #F5F5F0;
    text-align: center;
}

.clients-marquee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.client-deal {
    padding: 1rem 1.5rem;
    background: var(--background-light);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.solutions-detailed {
    padding: 6rem 0;
    background: #1A2B3C;
    position: relative;
    overflow: hidden;
}

.solutions-detailed .container {
    max-width: 1400px;
}

.solutions-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url('public/svgs/blue_background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.solutions-detailed::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-image: url('public/svgs/blue_background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    transform: rotate(180deg);
    z-index: 0;
}

.section-header {
    text-align: left;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.solutions-detailed .section-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    line-height: 1.3;
}

.solutions-detailed .section-header h2 br:first-of-type + text,
.solutions-detailed .section-header h2 > span:first-child {
    color: #F5A623;
}

.solutions-detailed .section-header p {
    font-size: 1.1rem;
    color: #E5E7EB;
    max-width: 700px;
    margin: 0 0 2rem 0;
    line-height: 1.8;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.solution-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    align-items: start;
}

.solution-left {
    padding-right: 1rem;
}

.solution-detail h3 {
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.1;
}

.solution-tagline {
    font-size: 1.15rem;
    color: #E5E7EB;
    line-height: 1.7;
}

.solution-right {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.solution-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #F5F5F0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 600px;
}

.solution-table .feature:nth-child(1) {
    flex: 1;
}

.solution-table .feature:nth-child(2) {
    flex: 1.5;
}

.solution-table .feature:nth-child(3) {
    flex: 1;
}

.solution-table .feature:nth-child(4) {
    flex: 1;
}

.feature-loan-agency {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    min-height: auto;
}

.loan-expertise,
.loan-technology {
    padding: 2rem 2.5rem;
    border: none;
}

.loan-expertise {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.loan-expertise h4,
.loan-technology h4 {
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #172B4D;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expertise-list span {
    color: #172B4D;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
}

.loan-technology p {
    color: #5E6C84;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature:first-child {
    border-top: none;
}

.feature:last-child {
    border-bottom: none;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
    box-shadow: inset 4px 0 0 #F5A623;
}

.feature h4 {
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #172B4D;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.feature p {
    color: #5E6C84;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature strong {
    color: #172B4D;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.feature strong::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #F5A623;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.solution-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 600px;
    box-shadow: none;
}

.solution-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}


.solutions-detailed .btn-cta {
    background: #F5A623;
    color: #172B4D;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.solutions-detailed .btn-cta:hover {
    background: #FDB913;
    color: #172B4D;
}

.solutions-detailed .btn-link {
    color: #F5A623;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.solutions-detailed .btn-link:hover {
    color: #FDB913;
}

.solutions-detailed .btn-link::after {
    content: '→';
    margin-left: 0.5rem;
}

.about-us {
    padding: 6rem 0;
    background: #1A2B3C;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('public/svgs/blue_background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.about-us .container {
    max-width: 1400px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.about-content .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.about-us .btn-cta {
    background: #F5A623;
    color: #172B4D;
    align-self: flex-start;
}

.about-us .btn-cta:hover {
    background: #FDB913;
    color: #172B4D;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.insights {
    padding: 5rem 0;
    background: var(--background-light);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.insight-card {
    background: #F5F5F0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.insight-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.insight-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    padding: 1.5rem 1.5rem 1rem;
    line-height: 1.4;
}

.insight-card p {
    color: var(--text-light);
    padding: 0 1.5rem 1rem;
    line-height: 1.6;
}

.insight-card .btn-link {
    padding: 0 1.5rem 1rem;
    display: block;
}

.insight-tag {
    display: inline-block;
    background: var(--background-light);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    margin: 1rem 1.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c4a73 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    max-width: 900px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .solutions-preview-side {
        padding: 2rem 1rem;
    }

    .circles-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .outer-ellipse {
        display: none;
    }

    .process-circle {
        width: 170px;
        height: 170px;
    }

    .process-circle:hover {
        width: 210px;
        height: 210px;
    }

    .checkmark {
        width: 38px;
        height: 38px;
    }

    .checkmark svg {
        width: 18px;
        height: 18px;
    }

    .circle-label {
        font-size: 0.8rem;
    }

    .loan-agency-lines {
        display: none;
    }

    .loan-agency-box {
        padding: 1.5rem 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .solutions-detailed .section-header h2 {
        font-size: 2.5rem;
    }

    .solutions-detailed .container {
        max-width: 100%;
    }

    .solution-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solution-left {
        padding-right: 0;
    }

    .solution-right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-table {
        border-right: none;
        min-height: auto;
    }

    .solution-right {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .solutions-content {
        gap: 4rem;
    }


    .solution-image {
        min-height: 300px;
    }

    .solution-image img {
        min-height: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image img {
        height: 500px;
    }

    .about-content {
        padding: 0;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-with-solutions {
        padding: 3rem 0 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .solutions-detailed .section-header h2 {
        font-size: 2rem;
    }

    .solutions-detailed .container {
        max-width: 100%;
    }

    .solution-detail {
        grid-template-columns: 1fr;
    }

    .solution-detail h3 {
        font-size: 2rem;
    }

    .solution-right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-table {
        border-right: none;
        min-height: auto;
    }

    .solution-right {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .solution-image {
        min-height: 300px;
    }

    .solution-image img {
        min-height: 300px;
    }

    .feature {
        padding: 1.5rem 2rem;
        min-height: auto;
    }

    .feature-loan-agency {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .loan-expertise {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .loan-expertise,
    .loan-technology {
        padding: 1.5rem 2rem;
    }

    .process-circle {
        width: 150px;
        height: 150px;
    }

    .process-circle:hover {
        width: 190px;
        height: 190px;
    }

    .checkmark {
        width: 34px;
        height: 34px;
    }

    .checkmark svg {
        width: 16px;
        height: 16px;
    }

    .circle-label {
        font-size: 0.75rem;
    }

    .circle-detail {
        font-size: 0.8rem;
    }

    .diagram-title {
        font-size: 1.3rem;
    }

    .loan-agency-title {
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }

    .feature-loan-agency {
        grid-template-columns: 1fr;
    }

    .loan-expertise {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .expertise-list span {
        font-size: 0.85rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        height: 400px;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

