* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1e3a8a;
  line-height: 1.6;
  opacity: 1;
  transition: opacity 0.5s ease;
}
@media (max-width: 600px) {
  nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.big-ribbon-header {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ribbon-top {
  background: white;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ribbon-top img {
  height: 120px;
}

.ribbon-bottom {
  background: #3180d4;
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
  border-top-left-radius: 50% 20%;
  border-top-right-radius: 50% 20%;
}

.ribbon-bottom h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.ribbon-bottom p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ribbon-bottom nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
}

.ribbon-bottom nav a:hover {
  color: #dbeafe;
}

.ribbon-bottom nav a.hidden {
  display: none;
}

.team-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1e3a8a;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  display: block;
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  text-align: center;
}

.team-card .role {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3180d4;
  margin-bottom: 1rem;
  text-align: center;
}

.team-card .quote {
  font-style: italic;
  font-size: 0.95rem;
  color: #1e3a8a;
  text-align: center;
}

header {
  display: none;
}

nav {
  background: #3180d4;
  text-align: center;
  padding: 1rem;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #dbeafe;
}

nav a.hidden {
  display: none;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f0f5ff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

section {
  margin-bottom: 2rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #1e3a8a;
}

section p {
  margin-top: 0.5rem;
}

section a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #3180d4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
}

section a:hover {
  background: #256bbf;
}

form input, form select, form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid #3180d4;
}

form input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
}

form button {
  background: #3180d4;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #256bbf;
}

.event {
  padding: 1rem;
  border-left: 4px solid #3180d4;
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.event h3 {
  color: #1e3a8a;
}

.event time, .event .venue, .event .info {
  display: block;
  font-size: 0.9rem;
  color: #1e3a8a;
  margin-top: 0.5rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #3180d4;
  color: #ffffff;
  margin-top: 2rem;
}

footer .socials a,
footer .contact p {
  display: block;
  margin: 0.5rem 0;
}

.auth-form {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1e3a8a;
}

.auth-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #3180d4;
  font-size: 1rem;
}

.auth-form input:focus {
  outline: none;
  border-color: #256bbf;
  box-shadow: 0 0 0 3px rgba(49,128,212,0.2);
}

.auth-form button {
  width: 100%;
  padding: 0.75rem;
  background: #3180d4;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-form button:hover {
  background: #256bbf;
}

.auth-form .form-alt {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: #1e3a8a;
}

.auth-form .form-alt a {
  color: #3180d4;
  font-weight: 500;
  text-decoration: none;
}

.auth-form .form-alt a:hover {
  text-decoration: underline;
}

#auth {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
}

#auth input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #3180d4;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#auth input:focus {
  outline: none;
  border-color: #256bbf;
  box-shadow: 0 0 0 3px rgba(49,128,212,0.2);
}

#auth button {
  width: 100%;
  padding: 0.75rem;
  background: #3180d4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 0.5rem;
}

#auth button:hover {
  background: #256bbf;
  transform: translateY(-2px);
}

#auth #logout {
  background: #FF4C4C;
}

#auth #logout:hover {
  background: #D13B3B;
}

#auth h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

#auth p {
  font-size: 0.9rem;
  color: #1e3a8a;
}

#auth a {
  color: #3180d4;
  font-weight: 500;
  text-decoration: none;
}

#auth a:hover {
  text-decoration: underline;
}
.recruitment-banner {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.recruitment-banner h3 {
  margin: 0;
  font-weight: 600;
  color: #92400e;
}

.recruitment-banner p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #78350f;
}

.recruitment-banner a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
  }

img[src*="linkedin"] {
  content: none !important;
  background: none !important;
}

