/* ==========================================
   Gold Scheme Section
========================================== */

.gold-scheme-section {
    padding: 80px 20px;
    background: #fffdf8;
}

.gold-scheme-section .container {
    max-width: 1200px;
    margin: auto;
}

/* ==========================================
   Heading
========================================== */

.section-tag {
    display: inline-block;

    padding: 8px 20px;

    background: linear-gradient(
        135deg,
        #d4af37,
        #f5d06f
    );

    color: #222;

    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    border-radius: 30px;

    margin-bottom: 20px;
}

.gold-scheme-section h1 {
    color: #222;

    font-size: 2.8rem;

    margin-bottom: 15px;

    text-align: center;
}

.scheme-subtitle {
    max-width: 800px;

    margin: 0 auto 50px;

    color: #666;

    font-size: 1.1rem;

    line-height: 1.8;

    text-align: center;
}

/* ==========================================
   Cards
========================================== */

.scheme-card {

    background: #ffffff;

    padding: 35px;

    margin-bottom: 35px;

    border-radius: 18px;

    box-shadow: 0 8px 25px
        rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;
}

.scheme-card:hover {

    transform: translateY(-5px);
}

.scheme-card h2 {

    color: #b8860b;

    font-size: 2rem;

    margin-bottom: 15px;
}

.scheme-card h3 {

    color: #444;

    font-size: 1.3rem;

    margin-bottom: 20px;
}

/* ==========================================
   List
========================================== */

.scheme-card ol {

    padding-left: 25px;
}

.scheme-card li {

    color: #555;

    font-size: 1.05rem;

    line-height: 1.9;

    margin-bottom: 18px;

    text-align: justify;
}

/* ==========================================
   Desktop Layout
========================================== */

@media (min-width: 992px) {

    .gold-scheme-section .container {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px;
    }

    .section-tag,
    .gold-scheme-section h1,
    .scheme-subtitle {

        grid-column: 1 / -1;
    }
}

/* ==========================================
   Tablet
========================================== */

@media (max-width: 991px) {

    .gold-scheme-section h1 {

        font-size: 2.2rem;
    }

    .scheme-card {

        padding: 28px;
    }

    .scheme-card h2 {

        font-size: 1.8rem;
    }
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 768px) {

    .gold-scheme-section {

        padding: 60px 15px;
    }

    .section-tag {

        display: block;

        width: fit-content;

        margin: 0 auto 20px;
    }

    .gold-scheme-section h1 {

        font-size: 1.8rem;

        text-align: center;
    }

    .scheme-subtitle {

        font-size: 1rem;

        margin-bottom: 35px;
    }

    .scheme-card {

        padding: 22px;
    }

    .scheme-card h2 {

        font-size: 1.5rem;
    }

    .scheme-card h3 {

        font-size: 1.1rem;
    }

    .scheme-card li {

        font-size: 0.95rem;

        line-height: 1.8;

        text-align: left;
    }
}
