.hero {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeInDown 1s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    background: #fff;
    color: #1B8CFB;
}

.hero .btn:hover {
    background: #1B8CFB;
    color: #fff;
    border-color: #fff;
}

.hero .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.hero .btn-secondary:hover {
    background: #fff;
    color: #1B8CFB;
}

.advantages {
    padding: 4rem 0;
    background: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
    border-color: #1B8CFB;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.loan-info {
    padding: 4rem 0;
    background: #f8f9fa;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-highlight {
    font-size: 2rem;
    color: #1B8CFB;
    font-weight: bold;
    margin: 1rem 0;
}

.loan-example {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.loan-example h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.loan-example ul {
    list-style: none;
    padding-left: 0;
}

.loan-example li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.loan-example li:last-child {
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #1B8CFB;
}

.partners {
    padding: 4rem 0;
    background: #fff;
}

.partners-intro {
    text-align: center;
    max-width: 900px;
    margin: 2rem auto;
    color: #666;
    line-height: 1.8;
}

.partner-card {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.partner-card p {
    margin: 0.5rem 0;
}

.partner-card a {
    color: #fff;
    text-decoration: underline;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* App Features */
.app-features {
    padding: 4rem 0;
    background: #fff;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.feature-text h2::after {
    margin: 1rem 0;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}