/* ==============================
   SERVICES SECTION
============================== */

.services-section {
    padding: 10px 2px;
    background: #ffffff;
}

.services-container {
    max-width: 1290px;
    margin: auto;
}

/* ==============================
   GRID LAYOUT
============================== */

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px 40px;
}

/* --- Top Row (3 cards) --- */
.catalog-card:nth-child(1),
.catalog-card:nth-child(2),
.catalog-card:nth-child(3) {
    grid-column: span 2;
}

/* --- Bottom Row (Centered 2 cards) --- */
.catalog-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.catalog-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* ==============================
   CARD STYLE
============================== */

.catalog-card {
    background: #ffffff;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    transition: 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
}

.catalog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 6px;
}

.catalog-card h3 {
    margin: 20px 0 15px;
    font-size: 20px;
    font-weight: 600;
    color: #0d2a57;
}

/* ==============================
   BUTTON
============================== */

.btn-download {
    display: inline-block;
    padding: 12px 24px;
    background: #0d2a57;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-download:hover {
    background: #001a3a;
}

/* ==============================
   RESPONSIVE
============================== */

/* Tablet */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-card {
        grid-column: auto !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .catalog-card img {
        height: 200px;
    }

    .catalog-card h3 {
        font-size: 18px;
    }

    .btn-download {
        width: 10%;
    }
}
