/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eaeaea;
}

.nav-links {
    display: flex;
    gap: 40px; /* Spaced out as requested */
    align-items: center;
}

.nav-links li a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 8px 16px;
}

.nav-links li a.active {
    background-color: #0056b3;
    color: white;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-logos img {
    height: 80px; /* Placeholder size */
    object-fit: contain;
}

.main-logo {
    height: 120px !important;
}

.hero-content h1 {
    color: #004a7c;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #004a7c;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #004a7c;
    border: 2px solid #004a7c;
}

/* 3-Column Layout */
.content-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column h2 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid #eee;
}

.row-card {
    display: flex;
    gap: 15px;
}

.row-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #222;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    color: #555;
}

.date, .event-time, .event-date {
    font-size: 13px !important;
    color: #888 !important;
    margin-top: 5px;
}

.event-card .card-content h3 {
    color: #000;
}

/* Footer */
footer {
    background-color: #011936;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-us p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 20px;
}

.footer-logos {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logos img {
    height: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons span {
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li a {
    color: #bbb;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: white;
}

.contact p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #1a3250;
    margin-top: 40px;
    padding-top: 20px;
    position: relative;
}

.footer-bottom p {
    font-size: 13px;
    color: #bbb;
}

.scroll-top {
    position: absolute;
    right: 20px;
    background-color: #0d2745;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
