/* styles3.css - Corporate Card Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', sans-serif;
    background: #f4f6f8;
    color: #333333;
    line-height: 1.9;
    font-size: 16px;
}

header {
    background: #ffffff;
    padding: 18px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,41,217,0.1);
}

.logo img {
    height: 48px;
}

.header-right {
    display: flex;
    gap: 22px;
    align-items: center;
}

.header-btns {
    display: flex;
    gap: 12px;
}

.btn-red {
    background: #0029D9;
    color: #ffffff;
    padding: 11px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.25s;
    font-size: 15px;
}

.btn-red:hover {
    background: #00A3FF;
    transform: scale(1.05);
}

.btn-outline {
    background: #ffffff;
    color: #0029D9;
    padding: 11px 28px;
    text-decoration: none;
    border: 2px solid #0029D9;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: #0029D9;
    color: #ffffff;
}

.promo-box {
    background: linear-gradient(90deg, #00A3FF 0%, #0029D9 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.promo-box strong {
    font-weight: 800;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 35px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0029D9;
    margin-bottom: 35px;
    line-height: 1.3;
}

h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin: 50px 0 22px;
    padding-bottom: 10px;
    border-bottom: 4px solid #00A3FF;
    display: inline-block;
}

p {
    margin-bottom: 24px;
    color: #4a4a4a;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.hero-img {
    margin: 35px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,41,217,0.12);
    background: #ffffff;
    padding: 15px;
}

.hero-img img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.update-date {
    background: #ffffff;
    border: 2px solid #00A3FF;
    padding: 16px 22px;
    margin: 35px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,163,255,0.15);
}

.update-icon {
    font-size: 26px;
    color: #00A3FF;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

th {
    background: #0029D9;
    color: white;
    padding: 16px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

td {
    padding: 15px 18px;
    border-bottom: 1px solid #e5e7eb;
    color: #4a4a4a;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(odd) {
    background: #fafbfc;
}

ol, ul {
    margin: 25px 0;
    padding-left: 22px;
    background: #ffffff;
    padding: 25px 25px 25px 50px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

li {
    margin-bottom: 13px;
    color: #4a4a4a;
}

footer {
    background: #0029D9;
    color: #ffffff;
    text-align: center;
    padding: 28px;
    font-size: 14px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    h1 { font-size: 32px; }
    header { flex-direction: column; gap: 15px; }
}
