/* section_no2_new.css */
.dimension-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.dimension-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1 1 280px; /* Flex-grow, flex-shrink, basis */
    max-width: 300px;
    padding: 0;
    margin: 10px;
    display: flex;
    flex-direction: column;
}

.dimension-card-header {
    color: #fff;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dimension-card-header h3 {
    margin: 0;
    font-size: 1.25em;
}

.dimension-card-body {
    padding: 15px;
}

.dimension-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dimension-card-body li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95em;
}

.dimension-card-body li:last-child {
    border-bottom: none;
}

