.cards-container {
    margin-top: 5rem;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 40vw;
    flex-wrap: wrap;
    margin-left:30vw;
    margin-right:30vw;
}

.card-dimensions {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    width:280px;
    height:auto;
    margin: 2rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 61, 92, 0.5), rgba(6, 48, 82, 0.4));
    border-radius: 12px;
    border: 1px solid rgba(0, 162, 255, 0.3);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-dimensions:hover {
    background: linear-gradient(135deg, rgba(10, 80, 120, 0.7), rgba(6, 60, 100, 0.6));
    border-color: rgba(0, 162, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0, 162, 255, 0.2);
    transform: translateY(-4px);
}

.card-dimensions-inner {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.card-dimensions-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 162, 255, 0.1);
}

.card-dimensions-content h3 {
    margin: 0 0 0.5rem 0;
    text-align: center;
    color: #f5f5f5;
    font-size: 1.3rem;
}

.card-dimensions-content p {
    margin: 0;
    color: #b8d4e8;
    font-size: 0.95rem;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

.heading {
    color: #00a2ff;
    font-size: 2.5rem;
    text-align: center;
}

.about {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    margin: 5rem auto 1rem auto;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(10,24,40,0.6), rgba(6,48,82,0.5));
    border-radius: 12px;
    border: 1px solid rgba(0,162,255,0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

p {
    text-align: center;
    color: #dbe8f1;
    font-size: 1.1rem;
}

.card-dimensions-image {
    width: 90%;
    margin: 0 auto;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 162, 255, 0.1);
}