.updates-hero {
    background: linear-gradient(135deg, #0f3d6e, #1f6fb2);
    color: #fff;
    padding: 70px 50px;
    border-radius: 18px;
    margin-bottom: 35px;
    text-align: left;
}

.updates-hero h1 {
    font-size: 42px;
    margin: 10px 0 18px;
}

.updates-hero p {
    font-size: 19px;
    max-width: 820px;
    line-height: 1.7;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}

.update-info-card,
.updates-section,
.version-card,
.download-box {
    background: #fff;
    border: 1px solid #dbe6f2;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(20, 60, 100, 0.08);
}

.update-info-card {
    padding: 28px;
}

.update-info-card span {
    display: block;
    color: #5d6f82;
    font-size: 14px;
    margin-bottom: 8px;
}

.update-info-card strong {
    display: block;
    font-size: 30px;
    color: #0f3d6e;
    margin-bottom: 8px;
}

.updates-section {
    padding: 38px 42px;
    margin-bottom: 30px;
}

.updates-section h2 {
    font-size: 28px;
    color: #0f3d6e;
    margin-bottom: 18px;
}

.updates-section p {
    font-size: 17px;
    line-height: 1.75;
    color: #34495e;
}

.update-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.update-feature-list div {
    background: #f3f8fd;
    border: 1px solid #d9e8f5;
    padding: 16px 18px;
    border-radius: 12px;
    font-weight: 600;
    color: #184d7d;
}

.version-card {
    padding: 28px;
    margin-top: 20px;
}

.version-card.current {
    border-left: 6px solid #1f6fb2;
}

.version-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.version-head span {
    background: #e8f3ff;
    color: #0f5f9e;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.version-card h3 {
    font-size: 22px;
    color: #0f3d6e;
    margin-bottom: 8px;
}

.version-date {
    color: #6c7a89;
    margin-bottom: 14px;
}

.version-card ul {
    padding-left: 20px;
    line-height: 1.8;
}

.steps-box {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.steps-box div {
    background: #f8fbff;
    border: 1px solid #dbe6f2;
    padding: 16px 18px;
    border-radius: 12px;
}

.download-box {
    text-align: center;
    padding: 50px 35px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffffff, #edf6ff);
}

.download-box h2 {
    color: #0f3d6e;
    font-size: 30px;
    margin-bottom: 14px;
}

.download-box p {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 800px) {

    .updates-grid,
    .update-feature-list {
        grid-template-columns: 1fr;
    }

    .updates-hero {
        padding: 45px 28px;
    }

    .updates-hero h1 {
        font-size: 32px;
    }
}

.update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.update-box {
    background: #fff;
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.update-box h3 {
    margin-top: 0;
    color: #0d4c92;
}

.update-box ul {
    margin: 10px 0 0;
    padding-left: 20px;
}