* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #646464;
  background-color: #ffffff;
}

.container {
  width: 85%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  z-index: 99999;
  height: 74px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

.logo img {
  max-height: 54%;
  max-width: 100%;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
}

.nav a {
  color: #444444;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #9d080d;
}

/* Main Content */
main {
  padding-top: 74px;
}

/* Hero Section */
.hero {
  background-image: url('https://ybaik.id/wp-content/uploads/2024/02/Untitled-design-12.png');
  background-size: cover;
  background-position: center 11%;
  background-blend-mode: multiply;
  height: 483px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.hero-content h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 46px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Services Preview */
.services-preview {
  background-color: rgba(5, 10, 0, 0.8);
  margin-top: -188px;
  position: relative;
  z-index: 99;
  padding: 30px 0;
}

.services-grid {
  display: flex;
  gap: 3%;
  justify-content: space-between;
}

.service-card {
  flex: 1;
  background-color: #ffffff;
  padding: 30px;
  border-bottom: 3px solid #9d080d;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.service-icon {
  font-size: 32px;
  color: #9d080d;
  margin-bottom: 25px;
}

.service-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  line-height: 24px;
}

/* Why Choose Us */
.why-choose-us {
  padding: 4% 0;
  background-color: #ffffff;
}

.content-wrapper {
  display: flex;
  gap: 5.5%;
  align-items: center;
}

.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.divider {
  width: 100px;
  height: 23px;
  margin-bottom: 10px;
}

.text-content p {
  font-size: 15px;
  line-height: 24px;
  text-align: justify;
}

.image-content {
  flex: 1;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

/* Our Services */
.our-services {
  padding: 4% 0;
  background-color: #f5f5f5;
}

.our-services h3 {
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
}

.services-grid-detailed {
  display: flex;
  gap: 3%;
  flex-wrap: wrap;
}

.service-detail-card {
  flex: 0 0 22.75%;
  background-color: #ffffff;
  border-bottom: 3px solid #9d080d;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.service-detail-card img {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.service-detail-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 25px 10px;
  text-align: center;
}

.service-detail-card p {
  font-size: 15px;
  line-height: 24px;
  margin: 0 25px 25px;
  text-align: center;
}

/* Quote Section */
.quote-section {
  background-image: url('https://ybaik.id/wp-content/uploads/2024/01/featured-images-1-1.png');
  background-size: 100%;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 4% 0;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-content {
  color: #ffffff;
  text-align: left;
  max-width: 50%;
}

.quote-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #222222;
  color: #ffffff;
  padding: 4% 0 15px;
}

.footer-grid {
  display: flex;
  gap: 5%;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-column p {
  margin-bottom: 14px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #9d080d;
}

.social-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: left;
}

.footer-bottom p {
  font-size: 12px;
  color: #ffffff;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

/* Page Hero */
.page-hero {
  background-color: #9d080d;
  color: #ffffff;
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

/* About Content */
.about-content {
  padding: 60px 0;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 30px 0 20px;
}

.about-content p,
.about-content ul {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
}

.about-content ul {
  list-style-position: inside;
  padding-left: 20px;
}

.about-content li {
  margin-bottom: 10px;
}

/* Team Section */
.team-section {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.team-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

/* Study Overseas Content */
.study-overseas-content {
  padding: 60px 0;
}

.intro-text {
  text-align: center;
  margin-bottom: 60px;
}

.intro-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 16px;
  line-height: 26px;
  max-width: 800px;
  margin: 0 auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.destination-card {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.destination-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #9d080d;
  margin-bottom: 15px;
}

.destination-card p {
  font-size: 15px;
  line-height: 24px;
}

/* Process Section */
.process-section {
  margin-top: 60px;
}

.process-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #9d080d;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  line-height: 22px;
}

/* Excursion Content */
.excursion-content {
  padding: 60px 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.program-card {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
}

.program-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #9d080d;
  margin-bottom: 20px;
}

.program-card p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
}

.program-card ul {
  list-style-position: inside;
  padding-left: 20px;
}

.program-card li {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 10px;
}

/* Campus Odyssey */
.campus-odyssey {
  margin: 60px 0;
}

.campus-odyssey h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.campus-odyssey > p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}

.odyssey-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature {
  background-color: #f5f5f5;
  padding: 30px;
    border-radius: 8px;
}

.feature h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.feature p {
  font-size: 15px;
  line-height: 24px;
}

/* Benefits Section */
.benefits-section {
  margin-top: 60px;
}

.benefits-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.benefits-section ul {
  list-style-position: inside;
  padding-left: 20px;
}

.benefits-section li {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 10px;
}

/* Scholarships Content */
.scholarships-content {
  padding: 60px 0;
}

.scholarship-types {
  margin: 60px 0;
}

.scholarship-types h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.type-card {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #9d080d;
}

.type-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.type-card p {
  font-size: 15px;
  line-height: 24px;
}

/* Requirements Section */
.requirements-section {
  margin: 60px 0;
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
}

.requirements-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
}

.requirements-list ul {
  list-style-position: inside;
  padding-left: 20px;
}

.requirements-list li {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 10px;
}

/* Application Process */
.application-process {
  margin: 60px 0;
}

.application-process h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background-color: #9d080d;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 24px;
}

/* Tips Section */
.tips-section {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
}

.tips-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
}

.tips-section ul {
  list-style-position: inside;
  padding-left: 20px;
}

.tips-section li {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 10px;
}

/* Contact Content */
.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 30px;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.info-item p {
  font-size: 15px;
  line-height: 24px;
}

.social-link {
  color: #9d080d;
  text-decoration: none;
  font-weight: 600;
}

.social-link:hover {
  text-decoration: underline;
}

.office-hours {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.office-hours h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.office-hours p {
  font-size: 15px;
  line-height: 24px;
}

/* Contact Form */
.contact-form h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9d080d;
}

.submit-btn {
  background-color: #9d080d;
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #7a0609;
}

/* Map Section */
.map-section {
  margin-top: 60px;
}

.map-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .header-content {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .services-grid,
  .services-grid-detailed {
    flex-direction: column;
  }

  .service-detail-card {
    flex: 0 0 100%;
  }

  .content-wrapper {
    flex-direction: column;
  }

  .quote-content {
    max-width: 100%;
  }

  .quote-content h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .destinations-grid,
  .types-grid,
  .odyssey-features {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Header & Navigation */
    .header {
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 70px;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 70px;
    }

    .logo {
      display: flex;
      align-items: center;
      max-width: 200px; /* Limit logo container width */
    }

    .logo img {
      height: 40px; /* Fixed height to prevent overflow */
      width: auto;
      max-width: 100%; /* Ensure image doesn't exceed container */
    }

    .nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    .nav a {
      color: #444;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      text-transform: uppercase;
      transition: color 0.3s;
      padding: 5px 0;
      position: relative;
    }

    .nav a:hover,
    .nav a.active {
      color: #9d080d;
    }

    .nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #9d080d;
      transition: width 0.3s;
    }

    .nav a:hover::after,
    .nav a.active::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #444;
    }

    /* Main Content */
    main {
      padding-top: 70px;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                  url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Services Preview */
    .services-preview {
      background-color: #fff;
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: #222;
      margin-bottom: 15px;
    }

    .section-title .divider {
      width: 80px;
      height: 4px;
      background-color: #9d080d;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .service-card {
      background-color: #fff;
      border-radius: 8px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      border-top: 4px solid #9d080d;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      font-size: 48px;
      color: #9d080d;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #222;
    }

    .service-card p {
      color: #666;
    }

    /* Why Choose Us */
    .why-choose-us {
      padding: 80px 0;
      background-color: #f5f5f5;
    }

    .content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .text-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #222;
    }

    .text-content .divider {
      width: 80px;
      height: 4px;
      background-color: #9d080d;
      margin-bottom: 20px;
    }

    .text-content p {
      margin-bottom: 20px;
      color: #555;
      line-height: 1.8;
    }

    .image-content img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Quote Section */
    .quote-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                  url('https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
      padding: 100px 0;
      text-align: center;
      color: #fff;
    }

    .quote-content h2 {
      font-size: 2rem;
      font-style: italic;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .quote-content h3 {
      font-size: 1.5rem;
    }

    /* Footer */
    .footer {
      background-color: #222;
      color: #fff;
      padding: 60px 0 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column h4 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #fff;
    }

    .footer-column p {
      margin-bottom: 10px;
      color: #ccc;
    }

    .footer-column a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: #9d080d;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #333;
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .social-icon:hover {
      background-color: #9d080d;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      padding-top: 20px;
      text-align: center;
      color: #999;
      font-size: 0.9rem;
    }

    .footer-bottom a {
      color: #ccc;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #9d080d;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .content-wrapper {
        grid-template-columns: 1fr;
      }
      
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .header-content {
        padding: 0 15px;
      }
      
      .logo {
        max-width: 150px; /* Smaller logo on mobile */
      }
      
      .logo img {
        height: 35px; /* Smaller logo image on mobile */
      }
      
      .nav {
        position: relative;
      }
      
      .nav ul {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        width: 200px;
        padding: 15px 0;
        flex-direction: column;
        gap: 0;
        border-radius: 0 0 8px 8px;
      }
      
      .nav ul.show {
        display: flex;
      }
      
      .nav li {
        width: 100%;
      }
      
      .nav a {
        display: block;
        padding: 10px 20px;
        border-bottom: 1px solid #f0f0f0;
      }
      
      .nav a:last-child {
        border-bottom: none;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .hero-content h1 {
        font-size: 2.2rem;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
      .hero {
        height: 400px;
      }
      
      .hero-content h1 {
        font-size: 1.8rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .text-content h2 {
        font-size: 2rem;
      }
    }