﻿.packing-section {
    padding: 80px 0px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        display: inline-block;
        color: #0d9488;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-title h2 {
        font-size: 20px;
        color: darkblue;
        margin-bottom: 20px;
    }

    .section-title p {
        max-width: 900px;
        margin: auto;
        font-size: 17px;
    }

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .3s;
}

    .card:hover {
        transform: translateY(-6px);
    }

    .card a {
        text-decoration: none;
    }

    .card h3 {
        color: #0f766e;
        margin-bottom: 18px;
        font-size: 17px;
    }

    .card h4 {
        margin: 20px 0 10px;
        color: #17324d;
    }

    .card ul {
        padding-right: 18px;
    }

    .card li {
        margin-bottom: 8px;
    }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    table th {
        background: #0f766e;
        color: #fff;
        padding: 12px;
    }

    table td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
    }

details {
    margin-top: 15px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    background: #fafafa;
}

summary {
    cursor: pointer;
    font-weight: bold;
    color: #17324d;
}

details p {
    margin-top: 12px;
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 15px;
    }

    .packing-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 22px;
    }
}
