/* Reset some defaults */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Basic body styling */
body {
    background: #fff;
    color: #222;
    line-height: 1.6;
}

/* Header logo */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    border-bottom: 3px solid #007acc;
}

.logo {
    max-height: 90px;
}

/* Navigation styling */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #007acc;
    font-weight: bold;
    padding: 8px 12px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover {
    background: #007acc;
    color: #fff;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 20px 40px 20px;
    background: #f0f8ff;
}

.hero h1 {
    font-size: 2.5em;
    color: #004e89;
}

.hero p {
    font-size: 1.2em;
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #007acc;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #005f99;
}

/* About section */
.about {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.about h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
.sponsors {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .sponsor-card {
    width: 300px;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
  }
  .sponsor-card img {
    max-width: 100%;
    height: auto;
  }
  
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 30px 0;
}
.grid-box {
  background: #f9f9f9;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  text-align: center;
}
.grid-box h3 {
  margin-bottom: 10px;
  color: #004e89;
}
.grid-box p {
  font-size: 0.95em;
  margin-bottom: 15px;
}

/* Footer */
footer {
    background: #f8f8f8;
    color: #555;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
    border-top: 1px solid #ccc;
}
