/* Hero Section */
.hero-section {
  position: relative;
  background-image: url('/content/uploads/2020/12/hero-min.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff 0%, #020E15 100%);
  opacity: 0.6;
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.logo-container {
  flex-shrink: 0;
}

.logo-container img {
  width: 300px;
  height: auto;
  display: block;
}

.text-content {
  flex: 1;
}

/* Info Section */
.info-section {
  background: #ffffff;
  padding: 80px 20px;
  max-width: 1080px;
  margin: 0 auto 50px;
}

.info-container {
  margin-bottom: 60px;
}

.info-container:last-child {
  margin-bottom: 0;
}

* input:-internal-autofill-selected {
  background-color: transparent !important;
  background-image: none !important;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #093853;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  text-align: left;
}

.section-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: left;
}

.quote-block {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: #093853;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #093853;
  background: #f4f6fb;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  color: #093853;
  opacity: 0.3;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #093853;
  font-weight: 700;
  font-size: 1.25rem;
}

.feature-item strong {
  color: #093853;
  font-weight: 600;
}

/* Join List */
.join-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.join-list li:nth-child(4),
.join-list li:nth-child(5) {
  grid-column: span 1;
}

.join-list li:nth-child(4) {
  grid-column: 1 / 2;
}

.join-list li:nth-child(5) {
  grid-column: 2 / 4;
}

.join-item {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #fff;
  background: #093853;
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(10, 70, 190, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.join-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 70, 190, 0.25);
}

/* Institute Section */
.institute-section {
  background: linear-gradient(135deg, #093853 0%, #297D66 100%);
  padding: 80px 20px;
  margin: 0;
}

.institute-container {
  max-width: 1080px;
  margin: 0 auto;
}

.institute-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
  text-align: center;
}

.institute-section-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Responsive Styles */
@media only screen and (max-width: 980px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .logo-container img {
    width: 200px;
  }

  .join-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-list li:nth-child(4),
  .join-list li:nth-child(5) {
    grid-column: span 1;
  }
}

@media only screen and (max-width: 767px) {
  .logo-container img {
    width: 150px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-content {
    font-size: 1rem;
  }

  .quote-block {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  .quote-block::before {
    display: none;
  }

  .feature-item {
    font-size: 1rem;
    padding-left: 1.5rem;
  }

  .join-list {
    grid-template-columns: 1fr;
  }

  .join-list li:nth-child(4),
  .join-list li:nth-child(5) {
    grid-column: span 1;
  }

  .join-item {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .institute-section-title {
    font-size: 1.875rem;
  }

  .institute-section-content {
    font-size: 1rem;
  }
}
