:root {
  --navy: #0a1f44;
  --gold: #c5a572;
  --dark-gold: #a68759;
  --light-gray: #f8f9fa;
  --mid-gray: #e9ecef;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

.brand-logo-image img {
  height: 70px;
  width: auto;
  max-width: fit-content;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--mid-gray);
  transition: all 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 4rem;
}

.nav-container h1 {
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  right: 8px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--gold);
}

nav ul li a:hover::after {
  width: 100%;
}

header {
  background-image: linear-gradient(
      135deg,
      rgba(10, 31, 68, 0.6) 0%,
      rgba(10, 31, 68, 0.6) 100%
    ),
    url("../imgs/banner.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 12rem 4rem 10rem;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(197, 165, 114, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(197, 165, 114, 0.08) 0%,
      transparent 50%
    );
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

header h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

header p {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.95;
  letter-spacing: 0.3px;
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.cta-button:hover {
  background: var(--dark-gold);
  border-color: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem;
}

section {
  margin-bottom: 8rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

section:nth-child(even) {
  animation-delay: 0.1s;
}

.section-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

section h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

section h3 {
  font-family: "Inter", sans-serif;
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.card {
  background: var(--light-gray);
  padding: 3rem;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

ul li {
  padding-left: 2rem;
  margin-bottom: 1.2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

ul li i {
  margin-right: 0.8rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.leader-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--light-gray);
  transition: all 0.3s ease;
}

.leader-card:hover,
.leader-card.in-viewport {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.leader-icon {
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.leader-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.leader-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.leader-title {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.leader-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover,
.gallery-grid img.in-viewport {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

footer {
  background: var(--navy);
  color: var(--white);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

footer h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--gold);
}

.contact-item span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  flex-direction: row;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.submit-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background: linear-gradient(135deg, var(--navy) 0%, #152d56 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--dark-gold),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(197, 165, 114, 0.3),
    rgba(10, 31, 68, 0.1)
  );
  border-radius: 50%;
  opacity: 0.6;
  animation: rise 8s infinite ease-in;
}

.bubble:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  width: 60px;
  height: 60px;
}
.bubble:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
  width: 40px;
  height: 40px;
}
.bubble:nth-child(3) {
  left: 40%;
  animation-delay: 4s;
  width: 50px;
  height: 50px;
}
.bubble:nth-child(4) {
  left: 60%;
  animation-delay: 1s;
  width: 45px;
  height: 45px;
}
.bubble:nth-child(5) {
  left: 75%;
  animation-delay: 3s;
  width: 35px;
  height: 35px;
}
.bubble:nth-child(6) {
  left: 85%;
  animation-delay: 5s;
  width: 55px;
  height: 55px;
}

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(50px) scale(1.1);
    opacity: 0.4;
  }
  100% {
    bottom: 110%;
    transform: translateX(-50px) scale(0.8);
    opacity: 0;
  }
}

.footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 30px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 90px;
}

.footer-brand {
  animation: fadeInUp 0.6s ease-out;
  max-width: 300px;
}

.brand-logo {
  font-size: 2.5em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-tagline {
  color: #a0aec0;
  font-size: 1em;
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer .social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer .social-link:hover {
  background: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(197, 165, 114, 0.3);
}

.footer .social-link.active {
  background: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(197, 165, 114, 0.3);
}

.footer-column {
  animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(2) {
  animation-delay: 0.1s;
}
.footer-column:nth-child(3) {
  animation-delay: 0.2s;
}
.footer-column:nth-child(4) {
  animation-delay: 0.3s;
}
.footer-column:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-title {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-bottom: 12px;
  font-size: 0.95em;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(197, 165, 114, 0.5);
}

.newsletter-input::placeholder {
  color: #a0aec0;
}

.newsletter-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197, 165, 114, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #a0aec0;
  font-size: 0.9em;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-bottom-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0.7rem 2rem;
  }

  header {
    padding: 10rem 2rem 8rem;
  }

  header h1 {
    font-size: 3.5rem;
  }

  header p {
    font-size: 1.2rem;
  }

  main {
    padding: 6rem 2rem;
  }

  section {
    margin-bottom: 6rem;
  }

  section h2 {
    font-size: 2.5rem;
  }

  .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .leadership-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobh1 {
    font-size: 23px;
  }
  /* Navigation */
  .nav-container {
    padding: 0.5rem 1rem;
  }

  .nav-container h1 {
    font-size: 1.5rem;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    right: 0;
  }

  nav ul li a::after {
    display: none;
  }

  /* Hamburger Menu */
  .hamburger {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    position: absolute;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  /* Header */
  header {
    padding: 8rem 1rem 6rem;
  }

  header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  header p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  /* Main Content */
  main {
    padding: 4rem 1rem;
  }

  section {
    margin-bottom: 4rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  section h2 {
    font-size: 2.2rem;
  }

  section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
  }

  section p {
    font-size: 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card {
    padding: 2rem;
  }

  ul li {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 3rem 0;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leader-card {
    padding: 2rem 1.5rem;
  }

  .leader-name {
    font-size: 1.2rem;
  }

  .leader-description {
    font-size: 0.95rem;
  }

  /* Gallery and Leadership in-viewport effects */
  .gallery-grid img.in-viewport {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .leader-card.in-viewport {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  /* Footer */
  .footer .footer-content {
    padding: 40px 20px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .brand-tagline {
    font-size: 0.95rem;
  }

  .footer-column {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem;
  }

  .nav-container h1 {
    font-size: 1.3rem;
  }

  header {
    padding: 6rem 1rem 5rem;
  }

  header h1 {
    font-size: 2.4rem;
  }

  header p {
    font-size: 1rem;
  }

  main {
    padding: 3rem 1rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .leader-card {
    padding: 1.5rem 1rem;
  }

  .footer .footer-content {
    padding: 30px 15px 15px;
  }

  .brand-logo {
    font-size: 2em;
  }

  .footer-title {
    font-size: 1em;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .copyright {
    font-size: 0.85rem;
  }
}

/* Prevent horizontal scroll */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

header {
  position: relative;
  overflow: hidden;
}
