/* styles8.css - Material Elevation Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    background: #fafafa;
    color: #212121;
    line-height: 1.75;
}

header {
    background: linear-gradient(to right, #01579b, #0277bd);
    padding: 20px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.14), 0 3px 4px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

.logo img {
    height: 40px;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-btns {
    display: flex;
    gap: 12px;
}

.btn-red {
    background: #d32f2f;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.14), 0 3px 1px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.2);
}

.btn-red:hover {
    background: #c62828;
    box-shadow: 0 4px 5px rgba(0,0,0,0.14), 0 1px 10px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.2);
}

.btn-outline {
    background: white;
    color: #01579b;
    padding: 11px 27px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.14), 0 3px 1px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.2);
}

.btn-outline:hover {
    box-shadow: 0 4px 5px rgba(0,0,0,0.14), 0 1px 10px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.2);
    background: #f5f5f5;
}

.promo-box {
    background: #ef6c00;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 2px rgba(0,0,0,0.14), 0 3px 1px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.2);
}

.container {
    max-width: 1000px;
    margin: 24px auto;
    padding: 0 32px;
}

h1 {
    font-size: 45px;
    font-weight: 400;
    color: #01579b;
    margin-bottom: 36px;
    line-height: 1.35;
    background: white;
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

h2 {
    font-size: 30px;
    font-weight: 500;
    color: #0277bd;
    margin: 48px 0 20px;
    background: white;
    padding: 20px 24px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-left: 4px solid #d32f2f;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #424242;
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

strong {
    color: #d32f2f;
    font-weight: 500;
}

.hero-img {
    margin: 36px 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.hero-img img {
    width: 100%;
    display: block;
}

ol {
    margin: 24px 0;
    background: white;
    padding: 28px 28px 28px 58px;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

ol li {
    margin-bottom: 12px;
    color: #424242;
}

ol li::marker {
    color: #d32f2f;
    font-weight: 500;
}

.update-date {
    background: white;
    border-left: 4px solid #ef6c00;
    padding: 16px 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    font-size: 14px;
    color: #424242;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.update-icon {
    font-size: 20px;
    color: #ef6c00;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 36px 0;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

th {
    background: #01579b;
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    color: #424242;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: #f5f5f5;
}

footer {
    background: linear-gradient(to right, #01579b, #0277bd);
    color: white;
    text-align: center;
    padding: 24px;
    margin-top: 48px;
    font-size: 14px;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.14), 0 -3px 4px rgba(0,0,0,0.12), 0 -1px 5px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    h1 { font-size: 34px; }
    h2 { font-size: 26px; }
    .container { padding: 0 20px; }
}
