/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #e63946;
    /* A vibrant red accent */
    --text-color: #1d1d1f;
    /* Dark grey for readability */
    --bg-color: #f5f5f7;
    /* Soft light grey background */
    --card-bg: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --spacing-unit: 1rem;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header & Logo */
.header {
    text-align: center;
    padding: 3rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    max-width: 300px;
    height: auto;
}

/* Main Content */
.content {
    padding: 3rem;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #4a4a4a;
    text-align: justify;
}

.text-content strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #a00;
    text-decoration: underline;
}

.icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    color: #888;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        padding: 1rem;
        align-items: flex-start;
    }

    .container {
        border-radius: 8px;
    }

    .content {
        padding: 2rem 1.5rem;
    }

    .headline {
        font-size: 1.8rem;
    }

    .logo {
        max-width: 80%;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* News Section */
.news-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    display: flex;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 1rem;
    white-space: nowrap;
}

.news-headline {
    font-size: 1rem;
    color: var(--text-color);
}