/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    background: linear-gradient(45deg, #c8102e, #c8102e, #ffffff);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#logo {
    width: 100px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
}

/* Navigation Bar */
nav ul {
    background-color: #333;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav ul li {
    display: inline-block;
    padding: 15px 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #c8102e;
}

/* Section Styling */
section {
    padding: 40px 20px;
    background-color: white;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #c8102e;
    border-bottom: 3px solid #c8102e;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Card Styling */
.card {
    background-color: #f8f8f8;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 1.1em;
    line-height: 1.6;
}
.card a {
    text-decoration: none;
    color: #000000;
}
.card a:hover {
    text-decoration: underline;
}


.article-link {
    margin: 15px 0;
}

.article-link a {
    text-decoration: none;
    color: #c8102e;
    font-weight: bold;
    font-size: 1.2em;
}

.article-link a:hover {
    text-decoration: underline;
}

/* Contact Section Styling */
#contact {
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    color: #c8102e;
    border-bottom: 3px solid #c8102e;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2em;
}

#contact ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

#contact ul li {
    font-size: 1.2em;
}

#contact ul li a {
    color: #c8102e;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

#contact ul li a:hover {
    color: #a00e23;
}


/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9em;
}



