/* styles6.css - Geometric Angular Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', 'Impact', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f0f2f5 100%);
    color: #2d3748;
    line-height: 1.6;
}

header {
    background: #001f54;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-bottom: 24px;
}

.logo img {
    height: 37px;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-btns {
    display: flex;
    gap: 12px;
}

.btn-red {
    background: #be123c;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    font-weight: 700;
    transition: all 0.2s;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-red:hover {
    background: #9f1239;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 11px 27px;
    text-decoration: none;
    border: 2px solid white;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
    font-weight: 600;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: white;
    color: #001f54;
}

.promo-box {
    background: #ea580c;
    color: white;
    padding: 10px 20px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 48px 32px;
}

h1 {
    font-size: 44px;
    font-weight: 900;
    color: #001f54;
    margin-bottom: 38px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 20px;
}

h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #be123c 0%, #ea580c 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

h2 {
    font-size: 29px;
    font-weight: 800;
    color: #be123c;
    margin: 46px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f8fafc;
    padding: 16px 22px;
    clip-path: polygon(0 0, 98% 0, 100% 100%, 2% 100%);
    border-left: 4px solid #ea580c;
}

p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #475569;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

strong {
    color: #be123c;
    font-weight: 900;
}

.hero-img {
    margin: 38px 0;
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero-img img {
    width: 100%;
    display: block;
}

ol {
    margin: 24px 0 24px 36px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    background: #f8fafc;
    padding: 22px 22px 22px 52px;
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
}

ol li {
    margin-bottom: 12px;
    color: #475569;
    font-weight: 400;
}

ol li::marker {
    font-weight: 900;
    color: #be123c;
}

.update-date {
    background: #001f54;
    color: white;
    padding: 16px 26px;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    font-size: 14px;
    font-weight: 700;
}

.update-icon {
    font-size: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 36px 0;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

th {
    background: #001f54;
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    background: white;
    font-family: 'Arial', sans-serif;
}

tr:nth-child(odd) td {
    background: #f8fafc;
}

footer {
    background: #001f54;
    color: #cbd5e1;
    text-align: center;
    padding: 24px;
    margin-top: 48px;
    font-size: 13px;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    padding-top: 32px;
}

@media (max-width: 768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
}
