
    /* WRAPPER */
.static-wrapper {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px;
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

/* CARD */
.static-card {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 22px;
    padding: 50px 45px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* TITLE */
.static-title {
    font-size: 36px;
    font-weight: 900;
    color: #0f3460;
    margin-bottom: 25px;
    text-align: center;
}

/* CONTENT */
.static-content {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
}

.static-content h2,
.static-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #0f3460;
}

.static-content p {
    margin-bottom: 15px;
}

.static-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.static-content li {
    margin-bottom: 8px;
}

/* LINKS */
.static-content a {
    color: #3a86ff;
    font-weight: 600;
    text-decoration: underline;
}

.static-content a:hover {
    color: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .static-card {
        padding: 30px 25px;
    }

    .static-title {
        font-size: 28px;
    }
}
