* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    line-height: 1.8;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: #111;
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo span {
    color: #e8a000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

nav ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #e8a000;
}

.hero {
    background: #111;
    color: white;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.hero-badge {
    display: inline-block;
    background: #e8a000;
    color: #111;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 600px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: #e8a000;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin-bottom: 32px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.section-title span {
    color: #e8a000;
}

.section-subtitle {
    font-size: 1rem;
    color: #777;
    margin-bottom: 40px;
}

.main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.main-content {}

.sidebar {}

.article-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e8e8e8;
}

.article-block:last-child {
    border-bottom: none;
}

.article-block img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 24px;
}

.article-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #e8a000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.article-block h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.article-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin: 24px 0 12px;
    border-left: 4px solid #e8a000;
    padding-left: 14px;
}

.article-block p {
    color: #555;
    margin-bottom: 16px;
    font-size: 1rem;
}

.article-block ul {
    margin: 14px 0 20px 24px;
    color: #555;
}

.article-block ul li {
    margin-bottom: 10px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.stat-card {
    background: #111;
    color: white;
    padding: 24px;
    text-align: center;
    border-radius: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e8a000;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-box {
    background: #fff8e6;
    border-left: 4px solid #e8a000;
    padding: 20px 24px;
    margin: 24px 0;
}

.highlight-box h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #b87800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.highlight-box p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.sidebar-widget {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar-widget:last-child {
    border-bottom: none;
}

.sidebar-widget h3 {
    font-size: 0.8rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e8a000;
}

.sidebar-widget img {
    width: 100%;
    margin-bottom: 14px;
}

.sidebar-widget p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #444;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li strong {
    color: #111;
}

.contact-box {
    background: #111;
    color: white;
    padding: 20px;
    border-radius: 4px;
}

.contact-box p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.contact-box strong {
    color: #e8a000;
}

footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 24px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: white;
    font-size: 0.75rem;
    margin-bottom: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #e8a000;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

.page-hero {
    background: #111;
    color: white;
    padding: 60px 24px;
    border-bottom: 3px solid #e8a000;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.8;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h2 {
    font-size: 1.5rem;
    color: #111;
    margin: 36px 0 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.page-content h3 {
    font-size: 1.1rem;
    color: #e8a000;
    margin: 24px 0 12px;
    font-weight: 700;
}

.page-content p {
    color: #555;
    margin-bottom: 16px;
}

.page-content ul {
    margin: 14px 0 18px 24px;
    color: #555;
}

.page-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .main-layout, .stat-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}
