/* styles1.css - Minimalist Large Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.8;
}

header {
    background: linear-gradient(135deg, #1a4d8f 0%, #0d2847 100%);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.logo img {
    height: 42px;
    filter: brightness(1.1);
}

.header-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-btns {
    display: flex;
    gap: 15px;
}

.btn-red {
    background: #e63946;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-red:hover {
    background: #d62828;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 13px 31px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #1a4d8f;
}

.promo-box {
    background: #f77f00;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 60px 30px;
}

h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0d2847;
    margin-bottom: 45px;
    letter-spacing: -1px;
    line-height: 1.2;
}

h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a4d8f;
    margin: 55px 0 25px;
    border-left: 6px solid #e63946;
    padding-left: 20px;
}

p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #333;
}

strong {
    color: #e63946;
    font-weight: 700;
}

.hero-img {
    margin: 45px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.hero-img img {
    width: 100%;
    display: block;
}

ol {
    margin: 25px 0 25px 35px;
    font-size: 17px;
}

ol li {
    margin-bottom: 15px;
    padding-left: 10px;
    color: #333;
}

.update-date {
    background: #f0f4f8;
    padding: 18px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
    font-size: 15px;
}

.update-icon {
    font-size: 22px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 35px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

th {
    background: #1a4d8f;
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

td {
    padding: 16px 18px;
    border-bottom: 1px solid #e0e0e0;
    background: white;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background: #f9fafb;
}

footer {
    background: #0d2847;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
    font-size: 14px;
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 26px; }
    .container { padding: 30px 20px; }
    header { flex-direction: column; gap: 20px; }
}
