* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f6f0fa;
  color: #333;
}

/* HEADER & NAVBAR */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background:linear-gradient(135deg, #cbb4d4 0%, #43015b 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  background: linear-gradient(135deg, #cbb4d4 0%, #43015b 100%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 40px;
  gap: 40px;
  width: 100%;
  height: 100px;
}

.logo {
  background-image: url("../images/logoo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 140px;
  width: 140px;
  flex-shrink: 0;
}

.nav-links {
  margin-left: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #e3b9ff;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger:hover {
  color: #e3b9ff;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  background: #622079;
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 160px;
  left: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu li a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 18px 40px;
  transition: all 0.3s ease;
}

.mobile-menu li a:hover {
  background: rgba(255,255,255,0.1);
  color: #e3b9ff;
}

.mobile-menu.show {
  display: flex;
}

/* HERO SECTION */
.hero {
  color:#5a007a;
  text-align: center;
  padding: 40px 20px;
  margin-top: 160px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
   position: relative;  /* IMPORTANT */
  z-index: 1;   
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
 font-family: 'Times New Roman', Times, serif;
}

/* MAIN CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* CONTENT BOXES */
.box {
  background: #e5cfee;
  padding: 25px;
  border-radius: 14px;
  margin-bottom: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #8a2be2;
  transition: all 0.3s ease;

}

.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.box h2 {
  color: #7222a6;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.box p {
  line-height: 1.7;
  margin: 0;
}

.box ul {
  padding-left: 20px;
  line-height: 1.8;
  margin: 0;
}

.box ul li {
  margin-bottom: 10px;
}

/* HIGHLIGHT TAG */
.highlight {
  background: white;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 8px;
  margin-top: 10px;
  color: #5f1b8a;
  font-weight: 600;
}

/* FINAL SECTION */
.final-section {
  text-align: center;
  padding: 60px 40px;
  margin-top: 40px;
  background-color: #e5cfee;
  color: black;
  margin-bottom: 0;
}

.final-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #7222a6;
}

.final-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-btn {
  background: white;
  padding: 15px 45px;
  text-decoration: none;
  color: #43015b;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #f9f6ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer {
  background:  #43015b;
  color: #fff;
  padding: 40px 40px 30px;
margin-top: 0;
 position: relative;
  z-index: 10;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-col p {
  color: #e8d6f3;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #e8d6f3;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-col.contact a {
  color: #e8d6f3;
  text-decoration: none;
}

.footer-col.contact a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: #e0c8ef;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
    gap: 20px;
    height: 80px;
  }

  .logo {
    height: 100px;
    width: 100px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
  }

  .mobile-menu.show {
    display: flex;
  }

  .hero {
    margin-top: 80px;
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  .box {
    padding: 20px;
    margin-bottom: 20px;
  }

  .box h2 {
    font-size: 1.4rem;
  }

  .final-section {
    padding: 40px 20px;
  }

  .final-section h2 {
    font-size: 1.6rem;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 15px;
    gap: 15px;
    height: 80px;
  }

  .logo {
    height: 70px;
    width: 70px;
  }

  .hero {
    margin-top: 80px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .box h2 {
    font-size: 1.2rem;
  }

  .final-section h2 {
    font-size: 1.3rem;
  }
}
