/* General Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    padding: 20px;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Introduction Links */
.intro-links {
    text-align: center; /* Centers the links */
    margin-top: 20px; /* Adds spacing above the links */
}

.intro-links a {
    color: #0066cc; /* Keep links blue */
    text-decoration: none;
    font-weight: none; /* Bold for visibility */
}

.intro-links a:hover {
    text-decoration: underline;
}

/* Header Section */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 1.8px;
    color: #000000;
}

header p {
    font-size: 1.2rem;
    color: #555;
}

/* Introduction Section */
.intro {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between text and image */
    margin-bottom: 40px;
}

.intro-text {
    flex: 2;
    text-align: left;
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: center; /* Centers the image within its container */
    align-items: center;
}

.intro-image img {
    max-width: 100%; /* Ensures the image doesn't overflow its container */
    height: auto; /* Maintains aspect ratio */
    width: 180px; /* Scales the image to 250px width */
    border-radius: 0; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
}

.intro-text p {
    margin-bottom: 10px;
}

.intro-text a {
    color: #0066cc;
    text-decoration: none;
    font-weight: none;
}

.intro-text a:hover {
    text-decoration: underline;
}

/* News Section */
.news {
    margin-top: 40px;
}

.news h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: none; 
    padding-bottom: 0; 
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.news-item img {
    width: 80px;
    height: 80px;
    border-radius: 0px;
    object-fit: cover;
    box-shadow: none;
    background-color: #ffffff;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #000000;
}

.news-content h3 span {
    font-size: 0.9rem;
    color: #555;
    font-weight: normal;
}

.news-content p {
    font-size: 1rem;
    color: #333;
}