* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 3px solid #004080;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    font-size: 36px;
    color: #004080;
    font-weight: 700;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #004080;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 300px);
}

.news-article {
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Article Header */
.article-header {
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.category {
    display: inline-block;
    background: #004080;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 36px;
    color: #212529;
    margin-bottom: 10px;
    line-height: 1.3;
}

.subtitle {
    font-size: 20px;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 20px;
}

.meta {
    display: flex;
    gap: 20px;
    color: #6c757d;
    font-size: 14px;
}

.meta span::before {
    content: '|';
    margin: 0 10px;
}

.meta span:first-child::before {
    display: none;
}

/* Article Content */
.article-content {
    padding: 40px;
}

.article-content section {
    margin-bottom: 50px;
}

.article-content h2 {
    font-size: 28px;
    color: #212529;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #004080;
}

.article-content p {
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
    font-size: 16px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    font-weight: 500;
}

.article-content a {
    color: #004080;
    text-decoration: none;
    font-weight: 600;
}

.article-content a:hover {
    text-decoration: underline;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid #004080;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.info-box h3 {
    font-size: 20px;
    color: #212529;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #495057;
}

.info-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #004080;
    font-weight: bold;
}

/* Quote */
.quote {
    background: #e3f2fd;
    border-left: 5px solid #1976d2;
    padding: 30px;
    margin: 30px 0;
    border-radius: 5px;
}

.quote p {
    font-style: italic;
    font-size: 18px;
    color: #1976d2;
    margin-bottom: 15px;
}

.quote cite {
    display: block;
    text-align: right;
    color: #666;
    font-size: 16px;
}

/* Tech Specs Table */
.tech-specs {
    margin: 30px 0;
}

.tech-specs h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #212529;
}

.tech-specs table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tech-specs th,
.tech-specs td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.tech-specs th {
    background: #004080;
    color: #fff;
    font-weight: 600;
}

.tech-specs tr:last-child td {
    border-bottom: none;
}

/* Gallery */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* Strategy Points */
.strategy-points {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.strategy-points h3 {
    font-size: 24px;
    color: #212529;
    margin-bottom: 25px;
    text-align: center;
}

.point-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.point-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.point-item h4 {
    color: #004080;
    font-size: 18px;
    margin-bottom: 10px;
}

.point-item p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Contact Section */
.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item h3 {
    font-size: 16px;
    color: #004080;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: #495057;
    margin: 0;
}

/* Article Footer */
.article-footer {
    background: #f8f9fa;
    padding: 40px;
    border-top: 1px solid #dee2e6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.related-articles h3 {
    font-size: 20px;
    color: #212529;
    margin-bottom: 20px;
}

.related-articles ul {
    list-style: none;
}

.related-articles li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.related-articles li:last-child {
    border-bottom: none;
}

.related-articles a {
    color: #004080;
    text-decoration: none;
    font-weight: 500;
}

.related-articles a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #212529;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-info p {
    color: #adb5bd;
    margin-bottom: 10px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav a {
        font-size: 14px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .tech-specs {
        overflow-x: auto;
    }
    
    .tech-specs table {
        min-width: 500px;
    }
}