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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #1a365d; /* Deep Blue */
    color: white;
    padding: 40px 0;
    text-align: center;
    border-bottom: 4px solid #c53030; /* Accent Red */
}

.logo {
    font-size: 2.5rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.logo span {
    color: #c53030;
}

.tagline {
    font-weight: 300;
    opacity: 0.9;
    font-style: italic;
}

/* Sections */
section {
    padding: 40px 0;
}

.about h2 {
    color: #1a365d;
    margin-bottom: 15px;
    border-left: 5px solid #c53030;
    padding-left: 15px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.news-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.card-tag {
    display: inline-block;
    background: #e2e8f0;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #4a5568;
}

.news-card h3 {
    margin-bottom: 10px;
    color: #2d3748;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #c53030;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Subscription Box */
.subscribe {
    background: #2d3748;
    color: white;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
}

.subscribe-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

input[type="email"] {
    padding: 10px 15px;
    width: 60%;
    border-radius: 4px;
    border: none;
}

button {
    padding: 10px 25px;
    background: #c53030;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #9b2c2c;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #718096;
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    input[type="email"] {
        width: 100%;
    }
}