/* Global Styles */
body {
    min-height: 100vh;
    background-color: #F4F4F4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: left;
    color: white;
    z-index: 3;
    width: 1440px;
    margin: 0 auto;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.5;
    max-width: 600px;
}

/* Financing Options */
.financing-options {
    padding: 60px 20px;
    background-color: #F4F4F4;
}

.financing-container {
    max-width: 1440px;
    margin: 0 auto;
}

.financing-header {
    text-align: center;
    margin-bottom: 48px;
}

.financing-logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.financing-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.financing-description {
    font-size: 16px;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

.financing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.financing-plan {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.financing-plan-installment {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.financing-plan-duration {
    font-size: 24px;
    font-weight: 600;
    color: #BE930B;
}

.financing-plan-details {
    padding-top: 20px;
}

.financing-plan-total {
    margin-bottom: 0px;
}

.financing-plan-total-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.financing-plan-total-value {
    font-size: 36px;
    font-weight: 700;
    color: #1C1C1C;
}

.financing-plan-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.financing-plan-detail-label {
    font-size: 16px;
    color: rgba(28,28,28,0.50);
}

.financing-plan-detail-value {
    font-size: 16px;
    font-weight: 400;
    color: rgba(28,28,28,0.50);
}

.financing-plan-monthly {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.financing-plan-monthly-label {
    font-size: 14px;
    color: #6b7280;
    align-self: center;
}

.financing-plan-monthly-value {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

/* How to Use Section */
.how-to-use {
    background-color: white;
    padding: 50px 20px;
}

.how-to-use-container {
    max-width: 1440px;
    margin: 0 auto;
}

.how-to-use-header {
    text-align: center;
    margin-bottom: 40px;
}

.how-to-use-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 30px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.step-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-icon {
    background: linear-gradient(to bottom, #f7f2e2, white);
    border: 1px solid rgba(190, 147, 11, 0.1);
    border-radius: 8px;
    padding: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

.step-description {
    font-size: 16px;
    color: #4b5563;
    text-align: center;
}

.step-image {
    width: 100%;
    max-width: 245px;
    height: 335px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.connecting-line {
    display: none;
}

@media (min-width: 768px) {
    .connecting-line {
        display: block;
    }
}

.connecting-line.mobile {
    display: block;
}

@media (min-width: 768px) {
    .connecting-line.mobile {
        display: none;
    }
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    margin-top: 40px;
}

.shop-button {
    display: inline-block;
    background-color: #BE930B;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: background-color 0.15s ease-in-out;
    margin-bottom: 20px;
}

.shop-button:hover {
    background-color: #BE930B;
}

.cta-note {
    font-size: 16px;
    color: #4b5563;
}

.cta-note-highlight {
    color: #BE930B;
}

/* APR Note Section */
.apr-note {
    text-align: center;
    margin-top: 30px;
}

.apr-note p {
    font-size: 16px;
    color: rgba(28,28,28,0.70);
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 350px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .financing-options {
        padding: 40px 16px;
    }

    .financing-title {
        font-size: 24px;
    }

    .financing-plans {
        grid-template-columns: 1fr;
    }

    .how-to-use {
        padding: 30px 16px;
    }

    .how-to-use-title {
        font-size: 30px;
    }

    .steps-container {
        gap: 20px;
    }

    .step-image {
        max-width: 200px;
        height: 275px;
    }

    .apr-note {
        margin-top: 24px;
        padding: 12px;
    }

    .apr-note p {
        font-size: 13px;
    }

    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }
}
