.page-header {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.product-intro {
    padding: 4rem 0;
    background: #fff;
}

.intro-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.intro-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #1B8CFB;
}

.intro-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Transparent Fees Section */
.transparent-fees {
    padding: 4rem 0;
    background: #f8f9fa;
}

.fees-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fees-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fees-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.fees-text h2::after {
    margin: 1rem 0;
}

.fees-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.loan-details {
    padding: 4rem 0;
    background: #f8f9fa;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
}

.detail-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.detail-card h3 {
    color: #1B8CFB;
    text-align: center;
    margin-bottom: 1rem;
}

.detail-content .highlight {
    font-size: 2rem;
    color: #1B8CFB;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}

.detail-content ul {
    list-style: none;
    padding-left: 0;
}

.detail-content li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.detail-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1B8CFB;
    font-weight: bold;
}

.loan-calculator {
    padding: 4rem 0;
    background: #fff;
}

.calculator-box {
    max-width: 900px;
    margin: 2rem auto;
}

.example-scenario {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.example-scenario h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.example-scenario p {
    font-size: 1.1rem;
}

.calculation-steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 5px;
    border-left: 4px solid #1B8CFB;
}

.step-label {
    font-weight: 600;
    color: #2c3e50;
    flex: 0 0 150px;
}

.step-formula {
    color: #666;
    flex: 1;
    text-align: right;
}

.final-step {
    background: #1B8CFB;
    border-left: 4px solid #0a5fc9;
}

.final-step .step-label,
.final-step .step-formula {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.example-result {
    background: #d1ecf1;
    border-left: 5px solid #0c5460;
    padding: 1.5rem;
    border-radius: 5px;
}

.result-text {
    font-size: 1.1rem;
    color: #0c5460;
    margin-bottom: 1rem;
}

.result-note {
    font-size: 1rem;
    color: #0c5460;
    font-style: italic;
}

.product-features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
    border: 2px solid #1B8CFB;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.use-cases {
    padding: 4rem 0;
    background: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.case-card:hover {
    background: #fff;
    border-color: #1B8CFB;
    box-shadow: 0 5px 15px rgba(27, 140, 251, 0.2);
    transform: translateY(-5px);
}

.case-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.case-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.cta-box {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-box h2::after {
    background: #fff;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-box .btn {
    background: #fff;
    color: #1B8CFB;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-box .btn:hover {
    background: #1B8CFB;
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .intro-content-grid {
        grid-template-columns: 1fr;
    }

    .fees-showcase {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-label {
        flex: 1;
    }

    .step-formula {
        text-align: left;
    }
}