/* ----------------------------------------
   GLOBAL STYLES
----------------------------------------- */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #eef2f5;
    margin: 2;
    padding: 0;
    line-height: 1.45;
    color: #225;
}

h1, h2, h3, h4 {
    margin: 8px 0;
    font-weight: 600;
}

p { margin: 8px 0 14px; }

/* ----------------------------------------
   HEADER
----------------------------------------- */
header {
    background: #008cba;
    color: #fff;
    padding: 36px 24px;
    text-align: center;
}

/* ----------------------------------------
   NAVIGATION BAR
----------------------------------------- */
nav {
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #064;
    font-weight: 600;
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fafafa;
    display: inline-block;
    transition: 0.2s;
}

nav ul li a:hover {
    background: #e8f5e9;
    border-color: #0b5;
    color: #064;
}

/* Active page tab */
nav ul li a.active {
    background: #0b5;
    color: white;
    border-color: #0b5;
}

/* ----------------------------------------
   LAYOUT CONTAINERS
----------------------------------------- */
.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Two-column flexible layout */
.two-col {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ----------------------------------------
   BOXES, CARDS, BANNERS
----------------------------------------- */
.banner {
    background: #eee;
    padding: 28px;
    border-radius: 6px;
    margin-bottom: 18px;
}

/* Generic column box */
.col {
    flex: 1 1 300px;
    background: #fff;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}



.card {
  width: 220px;               /* fixed card width */
  text-align: center;
}

/* Force all images to same size */
.card img {
  width: 200px;               /* SAME width for all */
  height: 220px;              /* SAME height for all */
  object-fit: cover;          /* crop without distortion */
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Text styling */
.card p {
  margin-top: 10px;
  font-size: 15px;
}

/* ----------------------------------------
   TABLES
----------------------------------------- */
table {
    width: 100%;
    border-collapse: collapse;
}

td, th {
    padding: 10px;
}

tr:nth-child(even) {
    background: #f8f8f8;
}

/* Clean table (no borders) */
.table-clean td, 
.table-clean th {
    border: none;
}

/* ----------------------------------------
   SPONSORS SECTION (COLUMNS)
----------------------------------------- */
.sponsors ul {
    columns: 2;
    -webkit-columns: 2;
    list-style: disc;
    padding-left: 1.2rem;
}

/* ----------------------------------------
   TEXT FORMATTING
----------------------------------------- */
ul.plain {
    padding-left: 1rem;
}

.meta {
    font-size: 0.95rem;
    color: #555;
}

/* ----------------------------------------
   FOOTER
----------------------------------------- */
footer {
    font-size: 0.9rem;
    color: #666;
    padding: 18px 16px;
    border-top: 1px solid #eee;
    margin-top: 28px;
    text-align: center;
}
