/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header and Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #2c3e50;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 5px 0;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu li a {
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    align-items: center;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 5%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 1rem;
}

.btn:hover {
  background: #c0392b;
}

/* About Section */
.about {
  padding: 5rem 5%;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.about-content img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.about-text {
  max-width: 600px;
  text-align: left;
}

.intro,
.program-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Program Section */
.program {
  padding: 5rem 5%;
  background: #f9f9f9;
  text-align: center;
}

.program h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.program-item {
  background: #fff;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.program-item:hover {
  transform: translateY(-10px);
}

.program-item h3 {
  margin-bottom: 1rem;
  color: #e74c3c;
}

.program-item ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.program-item li {
  margin-bottom: 0.5rem;
}

.program-item em {
  font-style: italic;
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Team Section */
.team {
  padding: 5rem 5%;
  text-align: center;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

/* Contact Section */
.contact {
  padding: 5rem 5%;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.contact textarea {
  height: 150px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #2c3e50;
  color: #fff;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }
}



.legal-content {
  padding: 2rem;
  min-height: 2cm;
}
