.student-storage-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 141px;
    margin-bottom: 66px;
    margin-top: 74px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    user-select: none;
}

.student-storage-options .student-storage-option {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    color: #000168;
}

.student-storage-options .student-storage-option h2,
.student-storage-options .student-storage-option .h2 {
    margin-bottom: 38px;
}

.student-storage-options .student-storage-option h3,
.student-storage-options .student-storage-option .h3 {
    letter-spacing: -0.02rem;
    font-size: 17px;
    line-height: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

.student-storage-options .student-storage-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 210px;
    height: 210px;
    padding: 30px 36px;
    background: #FFFFFF;
    border: 1px solid #E86E14;
    border-radius: 50%;
    margin-bottom: 22px;
    gap: 10px;
}

.student-storage-options .student-storage-option-content img {
    max-height: 120px;
    max-width: none;
}

.student-storage-options .student-storage-option-description p {
    font-size: 17px;
    line-height: 1;
    color: #000168;
    letter-spacing: -0.02em;
}

/* Mobile styles */
@media (max-width: 768px) {
    .student-storage-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
        margin-top: 35px;
    }

    .student-storage-options .student-storage-option h2,
    .student-storage-options .student-storage-option .h2 {
        font-size: 15px;
        line-height: 1;
        margin-bottom: 20px;
    }

    .student-storage-options .student-storage-option h3,
    .student-storage-options .student-storage-option .h3 {
        font-size: 15px;
        line-height: 1;
        margin-bottom: 0;
    }

    .student-storage-options .student-storage-option-content {
        width: 95px;
        height: 95px;
        padding: 17px 5px;
    }

    .student-storage-options .student-storage-option-content img {
        max-height: 33px;
    }

    .student-storage-options .student-storage-option-description p {
        font-size: 12px;
    }
}


