/* =============================================
   index.html (Home) — page-specific styles
   ============================================= */

/* --- Offerings Grid --- */
.offerings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 110rem;
    margin: 0 auto;
}

@media (min-width: 991px) {
    .offerings-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.offering-card {
    background: white;
    padding: 4rem;
    border-radius: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-card:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.offering-card h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.6rem;
}

.offering-card p {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.offering-card ul {
    margin: 0 0 2.4rem;
    padding-left: 2.4rem;
}

.offering-card li {
    margin-bottom: 0.8rem;
    color: #333333;
    line-height: 1.6;
}

.offering-card .card-cta {
    margin-top: auto;
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: #dd1e05;
    color: #ffffff;
    border-radius: 0.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-card .card-cta:hover {
    background-color: #bb1a04;
    transform: translateY(-0.1rem);
    text-decoration: none;
}

.offering-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #dd1e05;
    background: #fff2ea;
    padding: 0.4rem 1.2rem;
    border-radius: 0.4rem;
    margin-bottom: 1.6rem;
}

/* --- Contact Section --- */
.contact-section {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.contact-wrapper {
    max-width: 60rem;
    margin: 0 auto;
}

.contact-wrapper h2 {
    text-align: center;
    margin-bottom: 1.6rem;
}

.contact-intro {
    font-size: 1.8rem;
    color: #666666;
    text-align: center;
    max-width: 60rem;
    margin: 0 auto 3.2rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .offering-card {
        padding: 2.4rem;
    }

    .offering-card h3 {
        font-size: 2.4rem;
    }
}
