/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px 30px ;
}

/* ===== ROW ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

/* ===== COLUMNS ===== */
.col-lg-6,
.col-md-6 {
    width: 50%;
    padding: 15px;
}

/* Tablet */
@media (max-width: 992px) {
    .col-lg-6 {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .col-md-6 {
        width: 100%;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 10px;
}
.resource-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 40px;
    height: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Icon */
.resource-icon i {
    font-size: 42px !important;
    margin-bottom: 25px;
}

/* Title */
.resource-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

/* Description */
.resource-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 28px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

/* Primary */
.btn-primary {
    background: #0d6efd;
    color: white;
}

/* Success */
.btn-success {
    background: #198754;
    color: white;
}

/* Warning */
.btn-warning {
    background: #ffc107;
    color: #000;
}

/* Danger */
.btn-danger {
    background: #dc3545;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
}
@media (max-width: 576px) {

    .section-title {
        font-size: 26px;
    }

    .resource-card {
        padding: 30px 25px;
    }

    .resource-card h4 {
        font-size: 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}