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

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

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

.top-bar {
    background: #002d72;
    color: rgba(255,255,255,0.8);
    padding: 6px 0;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0.5px;
}

header {
    background: #fff;
    border-bottom: 3px solid #002d72;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #002d72;
    letter-spacing: -0.5px;
}

.logo span {
    color: #e31837;
}

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

nav ul li a {
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
    padding: 4px 0;
}

nav ul li a:hover {
    color: #002d72;
}

.hero-banner {
    background: #f4f4f4;
    border-bottom: 1px solid #ddd;
    padding: 0;
}

.hero-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
}

.hero-main {
    padding: 40px 40px 40px 24px;
    border-right: 1px solid #ddd;
}

.hero-main .label {
    display: inline-block;
    background: #002d72;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-main p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-main img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-top: 20px;
}

.hero-side {
    padding: 24px;
}

.hero-side .side-article {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

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

.hero-side .side-article img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    margin-bottom: 10px;
}

.hero-side .side-article h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    margin-bottom: 6px;
}

.hero-side .side-article p {
    font-size: 0.85rem;
    color: #666;
}

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

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

.main-content {}

.sidebar {}

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

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

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #002d72;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #002d72;
    display: inline-block;
}

.article-section h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.25;
}

.article-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin: 24px 0 12px;
    line-height: 1.35;
}

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

.article-section img {
    width: 100%;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
}

.article-section ul {
    margin: 14px 0 18px 24px;
    color: #444;
}

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

.tip-box {
    background: #f0f4ff;
    border-left: 4px solid #002d72;
    padding: 20px 24px;
    margin: 24px 0;
}

.tip-box h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #002d72;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

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

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

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

.sidebar-widget h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #002d72;
}

.sidebar-widget img {
    width: 100%;
    margin-bottom: 14px;
    border: 1px solid #e0e0e0;
}

.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 a {
    color: #002d72;
    font-weight: 600;
}

.sidebar-list li a:hover {
    text-decoration: underline;
}

.contact-box {
    background: #f4f4f4;
    border: 1px solid #ddd;
    padding: 20px;
    font-size: 0.9rem;
}

.contact-box p {
    margin-bottom: 8px;
    color: #555;
}

.contact-box strong {
    color: #002d72;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

.rating-label {
    font-size: 0.85rem;
    color: #555;
    width: 140px;
    flex-shrink: 0;
}

.rating-track {
    flex: 1;
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #002d72;
    border-radius: 4px;
}

.rating-score {
    font-size: 0.85rem;
    font-weight: 700;
    color: #002d72;
    width: 30px;
    text-align: right;
}

footer {
    background: #111;
    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.5rem;
    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: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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: #e31837;
}

.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: #002d72;
    color: white;
    padding: 50px 24px;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

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

.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: 700;
}

.page-content h3 {
    font-size: 1.15rem;
    color: #111;
    margin: 24px 0 12px;
    font-weight: 600;
}

.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) {
    .hero-banner-inner, .content-layout, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-main h1 {
        font-size: 1.7rem;
    }
}
