@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('../assets/premium_photo.png') center/cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

:root {
  --blue: #06326b;
  --blue-light: #0d47a1;
  --white: #fff;
  --dark: #111;
  --accent: #fbc02d;
}

/* -----Header----- */
.site-header {
  background: var(--blue);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand a {
  color: white;
  text-decoration: none;
}

.brand-company {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 11px;
  opacity: 0.9;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: #eaf4ff;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 5px;
  position: relative;
}

.nav-list a::after {
  content: "";
  width: 0;
  height: 3px;
  background: white;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.25s;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

@media (max-width: 900px) {

  .mobile-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--blue);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    display: none;
    width: 200px;
  }

  .nav-list.nav-open {
    display: flex;
  }
}

@media(max-width: 480px) {
  .brand-company {
    font-size: 13.2px;
    font-weight: 700;
    line-height: 0.1;
  }

}

h2,
h2.title {
  text-align: center;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 45px;
  letter-spacing: 0.4px;
}

h2.title {
  font-size: 2.5rem;
}

@media (max-width: 768px) {

  h2,
  h2.title {
    font-size: 2rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {

  h2,
  h2.title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
}


.export-section {
  text-align: center;
  padding: 40px 20px;
}

.export-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.export-image {
  padding: 20px 0;
}

.export-image img {
  width: 100%;
  max-width: 950px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(6, 50, 107, 0.3),
    0 4px 10px rgba(13, 71, 161, 0.25);
}

@media (max-width: 480px) {
  .export-section {
    padding: 25px 15px;
  }

  .export-section h2 {
    font-size: 1.6rem;
  }

  .export-image {
    padding: 50px 0;
  }

  .export-image img {
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(6, 50, 107, 0.25);
  }
}

@media (max-width: 768px) {
  .export-section h2 {
    font-size: 1.9rem;
  }

  .export-image img {
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .export-section {
    padding: 60px 0;
  }

  .export-section h2 {
    font-size: 2.6rem;
  }
}