/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #262138;
  line-height: 1.6;
}

.page-container {
  max-width: 1512px;
  margin: 0 auto;
  background-color: #ffffff;
  position: relative;
}

/* Header Navigation */
.header {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 400;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #01597f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.contact-btn:hover {
  opacity: 0.9;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 938px;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(2, 24, 43, 0.3) 0%, rgba(2, 24, 43, 0.1) 100%);
}

.hero-title {
  color: #ffffff;
  font-size: 99px;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  max-width: 1200px;
  padding: 0 40px;
}

/* Advisory Board Section */
.advisory-section {
  padding: 80px 131px 120px;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 20px;
  font-weight: 600;
  color: #01597f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-description {
  font-size: 36px;
  font-weight: 400;
  color: #262138;
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto;
}

/* Profile Styles */
.profile {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.profile-image-wrapper {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-content {
  flex: 1;
  max-width: 800px;
}

.profile-name {
  font-size: 32px;
  font-weight: 600;
  color: #262138;
  margin-bottom: 12px;
  line-height: 1.2;
}

.profile-text {
  font-size: 18px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.7;
}

/* Separator Line */
.separator {
  height: 1px;
  background-color: #e5e7eb;
  margin: 40px 0;
  width: 100%;
  max-width: 800px;
  margin-left: 250px;
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  height: 513px;
  overflow: hidden;
}

.footer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-content {
  position: absolute;
  bottom: 60px;
  right: 80px;
  text-align: right;
  color: #ffffff;
}

.footer-text {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.75;
}

.footer-email {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-email:hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .advisory-section {
    padding: 60px 80px 100px;
  }

  .hero-title {
    font-size: 72px;
  }

  .section-description {
    font-size: 32px;
  }
}

@media (max-width: 960px) {
  .header {
    padding: 0 40px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hero-title {
    font-size: 56px;
  }

  .advisory-section {
    padding: 60px 40px 80px;
  }

  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .separator {
    margin-left: 0;
    max-width: 100%;
  }

  .footer-content {
    right: 40px;
    bottom: 40px;
  }

  .footer-text,
  .footer-email {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .header {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 42px;
    padding: 0 20px;
  }

  .advisory-section {
    padding: 40px 20px 60px;
  }

  .section-description {
    font-size: 24px;
  }

  .profile-image-wrapper {
    width: 150px;
    height: 150px;
  }

  .profile-name {
    font-size: 28px;
  }

  .profile-text {
    font-size: 16px;
  }

  .footer-content {
    right: 20px;
    bottom: 20px;
  }

  .footer-text,
  .footer-email {
    font-size: 18px;
  }
}
