/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Tank Storage Section */
.tank-storage {
    background-color: #e3f3fc;
    padding: 50px 10%;
    text-align: center;
}

/* Storage Header */
.storage-header {
    background: #0077b6;
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.storage-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.storage-description {
    font-size: 16px;
}

/* Accessibility Section */
.accessibility {
    margin-bottom: 30px;
}

.accessibility-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.accessibility-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #0077b6;
}

/* Terminals Section */
.terminals-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.terminals-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.terminals-description {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Terminals Grid */
.terminals-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.terminal-card {
    background: #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    width: 280px;
}

.terminal-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.terminal-name {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background: #0077b6;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tank-storage {
        padding: 30px 5%;
    }

    .accessibility-options {
        flex-direction: column;
        gap: 10px;
    }

    .terminals-grid {
        flex-direction: column;
        align-items: center;
    }

    .terminal-card {
        width: 100%;
        max-width: 300px;
    }
}