/* === Global Reset === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Arial", Helvetica, sans-serif;
    width: 100%;
    min-height: 100vh;
    background-color: #f9f9f9;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === Header Section === */
.Header {
    width: 100%;
    padding: 40px 20px;
    background-color: rgb(11, 100, 134);
    color: white;
    text-align: center;
    border-bottom: 4px solid #0a4e66;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.Header h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.Header h3 {
    font-size: 22px;
    font-weight: normal;
    margin-top: 0;
}

/* === Article Section === */
.article_ {
    width: 85%;
    max-width: 900px;
    background-color: white;
    margin: 30px auto;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.8;
    font-size: 16px;
}

.article_ strong {
    color: rgb(11, 100, 134);
}

/* .article_ a {
    color: #000;
    text-decoration: none;
    
} */

.article_ a:hover {
    text-decoration: underline;
}

/* === Responsive Design === */
@media (max-width: 600px) {
    .Header h1 {
        font-size: 32px;
    }

    .Header h3 {
        font-size: 18px;
    }

    .article_ {
        width: 95%;
        padding: 20px;
        font-size: 15px;
    }
}
