
/* ================= RESET & BASE ================= */
body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #00204c;
    background: #ffffff;
    padding-top: 80px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

section {
    padding: 70px 0; /* unified with all pages */
}

/* ================= UNIFORM HERO (ALL PAGES SAME SIZE) ================= */
.equipment-hero {
    width: 100%;
    min-height: 65vh; /* SAME AS ALL OTHER PAGES */
    background:
        linear-gradient(rgba(0,32,76,0.75), rgba(0,32,76,0.75)),
        url('../image/equipment.webp') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #ffffff;
    padding: 0 20px;
}

.equipment-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.equipment-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

/* ================= SECTION ================= */
.section-padding {
    padding: 70px 0;
}

/* ================= TITLES ================= */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #5a6f8f;
    text-align: center;
    margin-bottom: 35px;
}

/* ================= EQUIPMENT CARD ================= */
.equipment-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.equipment-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ================= IMAGE FIX ================= */
.equipment-box img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #f5f7fa;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 5px;
    transition: transform 0.35s ease;
}

.equipment-box:hover img {
    transform: scale(1.05);
}

/* ================= TITLE ================= */
.equipment-box h5 {
    font-weight: 600;
    margin: 10px 0;
    font-size: 1rem;
    color: #00204c;
}

/* ================= TABLE ================= */
.equipment-box table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-top: 8px;
}

.equipment-box table td {
    padding: 6px;
    border-bottom: 1px solid #edf1f7;
}

.equipment-box table td:first-child {
    color: #6b7f9d;
    text-align: left;
}

.equipment-box table td:last-child {
    text-align: right;
    font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .equipment-box img {
        height: 140px;
    }

    .equipment-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }

    .equipment-box img {
        height: 130px;
    }

    .equipment-box table {
        font-size: 0.8rem;
    }
}
