@charset "UTF-8";
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}
/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  width: 100%;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (min-width: 768px) {
  .navbar {
    height: 74px;
  }
}
@media (min-width: 2560px) {
  .navbar {
    height: 96px;
  }
}
@media (min-width: 3840px) {
  .navbar {
    height: 120px;
  }
}

.navbar-container {
  width: 100%;
  max-width: 1680px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .navbar-container {
    padding: 0 40px;
  }
}
@media (min-width: 2560px) {
  .navbar-container {
    max-width: 2400px;
    padding: 0 80px;
  }
}
@media (min-width: 3840px) {
  .navbar-container {
    max-width: 3600px;
    padding: 0 120px;
  }
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .logo img {
    height: 44px;
  }
}
@media (min-width: 2560px) {
  .logo img {
    height: 64px;
  }
}
@media (min-width: 3840px) {
  .logo img {
    height: 90px;
  }
}

/* Navigation menu — mobile overlay by default */
.nav-menu {
  display: flex;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  z-index: 999;
}
.nav-menu.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .nav-menu {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    bottom: auto;
    top: auto;
  }
}
@media (min-width: 2560px) {
  .nav-menu {
    gap: 48px;
  }
}
@media (min-width: 3840px) {
  .nav-menu {
    gap: 64px;
  }
}

.nav-item {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
@media (min-width: 768px) {
  .nav-item {
    width: auto;
    border-bottom: none;
    position: relative;
  }
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 16px 0;
  width: 100%;
  justify-content: space-between;
}
.nav-link:hover, .nav-link.active {
  color: #1a3d8f;
}
@media (min-width: 768px) {
  .nav-link {
    font-size: 16px;
    padding: 8px 0;
    width: auto;
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .nav-link {
    font-size: 18px;
  }
}
@media (min-width: 2560px) {
  .nav-link {
    font-size: 24px;
  }
}
@media (min-width: 3840px) {
  .nav-link {
    font-size: 32px;
  }
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-top: 1px;
}
@media (min-width: 2560px) {
  .dropdown-arrow {
    font-size: 14px;
  }
}

/* Dropdown menu */
.dropdown-menu {
  position: static;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  border-radius: 0;
  background: #fafafa;
}
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 400;
  color: #444;
  transition: all 0.2s ease;
}
@media (min-width: 2560px) {
  .dropdown-menu li a {
    font-size: 18px;
    padding: 16px 24px;
  }
}
@media (min-width: 768px) {
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    min-width: 200px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    max-height: none;
    overflow: visible;
  }
  .dropdown-menu li a:hover {
    background: #f0f4ff;
    color: #1a3d8f;
  }
}

.nav-item.dropdown-open .dropdown-menu {
  max-height: 300px;
  padding: 4px 0;
}

.nav-item.dropdown-open .dropdown-arrow {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}
/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer-wrapper {
  width: 100%;
  padding: 0 16px 36px;
}
@media (min-width: 430px) {
  .site-footer-wrapper {
    padding: 0 24px 64px;
  }
}
@media (min-width: 768px) {
  .site-footer-wrapper {
    padding: 0 40px 70px;
  }
}
@media (min-width: 1024px) {
  .site-footer-wrapper {
    padding: 0 60px 78px;
  }
}
@media (min-width: 1440px) {
  .site-footer-wrapper {
    padding: 0 80px 80px;
  }
}
@media (min-width: 2560px) {
  .site-footer-wrapper {
    padding: 0 120px 100px;
  }
}
@media (min-width: 3840px) {
  .site-footer-wrapper {
    padding: 0 160px 140px;
  }
}

.site-footer {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 36px 24px 32px;
  position: relative;
  background: #012025;
  min-height: 320px;
  border-radius: 22px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 40px 35px 28px;
    border-radius: 0;
    background: url("../assets/footer.svg") no-repeat center center;
    background-size: 100% 100%;
  }
}
@media (min-width: 1440px) {
  .site-footer {
    padding: 50px 50px 30px;
  }
}
@media (min-width: 2560px) {
  .site-footer {
    max-width: 2400px;
    padding: 72px 72px 44px;
    border-radius: 0;
    min-height: 500px;
  }
}
@media (min-width: 3840px) {
  .site-footer {
    max-width: 3600px;
    padding: 104px 104px 64px;
    min-height: 720px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 40px;
  }
}
@media (min-width: 2560px) {
  .footer-grid {
    gap: 56px;
  }
}
@media (min-width: 3840px) {
  .footer-grid {
    gap: 80px;
  }
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .footer-col-title {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .footer-col-title {
    font-size: 16px;
    margin-bottom: 18px;
  }
}
@media (min-width: 2560px) {
  .footer-col-title {
    font-size: 24px;
    margin-bottom: 26px;
  }
}
@media (min-width: 3840px) {
  .footer-col-title {
    font-size: 34px;
    margin-bottom: 36px;
  }
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
  line-height: 1.2;
}
@media (min-width: 1440px) {
  .footer-logo-text {
    font-size: 24px;
  }
}
@media (min-width: 2560px) {
  .footer-logo-text {
    font-size: 36px;
  }
}
@media (min-width: 3840px) {
  .footer-logo-text {
    font-size: 52px;
  }
}

.footer-logo-tagline {
  font-size: 7.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (min-width: 1440px) {
  .footer-logo-tagline {
    font-size: 8px;
  }
}
@media (min-width: 2560px) {
  .footer-logo-tagline {
    font-size: 12px;
    letter-spacing: 5px;
    margin-top: 4px;
  }
}
@media (min-width: 3840px) {
  .footer-logo-tagline {
    font-size: 17px;
    letter-spacing: 7px;
    margin-top: 6px;
  }
}

.footer-about-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-top: 13px;
}
@media (min-width: 1440px) {
  .footer-about-text {
    font-size: 14px;
    margin-top: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-about-text {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-about-text {
    font-size: 28px;
    margin-top: 28px;
  }
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-socials {
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .footer-socials {
    margin-top: 18px;
  }
}
@media (min-width: 2560px) {
  .footer-socials {
    gap: 14px;
    margin-top: 26px;
  }
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}
.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-social-icon svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1440px) {
  .footer-social-icon {
    width: 32px;
    height: 32px;
  }
  .footer-social-icon svg {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 2560px) {
  .footer-social-icon {
    width: 46px;
    height: 46px;
    border-radius: 9px;
  }
  .footer-social-icon svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-social-icon {
    width: 64px;
    height: 64px;
    border-radius: 13px;
  }
  .footer-social-icon svg {
    width: 30px;
    height: 30px;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer-links li a {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .footer-links li a {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .footer-links li a {
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-links li a {
    font-size: 32px;
  }
}
@media (min-width: 2560px) {
  .footer-links li {
    margin-bottom: 14px;
  }
}
@media (min-width: 3840px) {
  .footer-links li {
    margin-bottom: 20px;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  justify-content: center;
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.footer-contact-item a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer-contact-item {
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .footer-contact-item {
    font-size: 14px;
  }
  .footer-contact-item svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 2560px) {
  .footer-contact-item {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .footer-contact-item svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-contact-item {
    font-size: 28px;
    margin-bottom: 22px;
  }
  .footer-contact-item svg {
    width: 30px;
    height: 30px;
  }
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 28px;
}
@media (min-width: 1440px) {
  .footer-divider {
    margin-top: 30px;
  }
}
@media (min-width: 2560px) {
  .footer-divider {
    margin-top: 44px;
  }
}
@media (min-width: 3840px) {
  .footer-divider {
    margin-top: 64px;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    max-width: 72%;
  }
}
@media (min-width: 1440px) {
  .footer-bottom {
    margin-top: 20px;
  }
}
@media (min-width: 2560px) {
  .footer-bottom {
    margin-top: 30px;
    gap: 0;
  }
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 1440px) {
  .footer-copyright {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-copyright {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-copyright {
    font-size: 28px;
  }
}

.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: #fff;
}
@media (min-width: 1440px) {
  .footer-legal a {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-legal a {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-legal a {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .footer-legal {
    gap: 24px;
  }
}
@media (min-width: 2560px) {
  .footer-legal {
    gap: 36px;
  }
}
@media (min-width: 3840px) {
  .footer-legal {
    gap: 52px;
  }
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Nunito Sans", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media (min-width: 1440px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 2560px) {
  .container {
    max-width: 2000px;
    padding: 0 60px;
  }
}
@media (min-width: 3840px) {
  .container {
    max-width: 3000px;
    padding: 0 90px;
  }
}

/* ============================================
   SCROLL ANIMATION
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   1. HERO SECTION
   ============================================ */
.hero-section {
  padding: 50px 0 40px;
  text-align: center;
  background: #fff;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 50px 0 50px;
  }
}
@media (min-width: 1440px) {
  .hero-section {
    padding: 60px 0 60px;
  }
}
@media (min-width: 2560px) {
  .hero-section {
    padding: 110px 0 80px;
  }
}
@media (min-width: 3840px) {
  .hero-section {
    padding: 160px 0 120px;
  }
}
.hero-section .label {
  font-size: 12px;
  font-weight: 500;
  color: #1f7a5a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hero-section .label {
    font-size: 13px;
  }
}
@media (min-width: 1440px) {
  .hero-section .label {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
@media (min-width: 2560px) {
  .hero-section .label {
    font-size: 20px;
    margin-bottom: 18px;
    letter-spacing: 3px;
  }
}
@media (min-width: 3840px) {
  .hero-section .label {
    font-size: 28px;
    margin-bottom: 26px;
  }
}
.hero-section h1 {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.15;
}
@media (min-width: 430px) {
  .hero-section h1 {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 46px;
  }
}
@media (min-width: 1440px) {
  .hero-section h1 {
    font-size: 52px;
  }
}
@media (min-width: 2560px) {
  .hero-section h1 {
    font-size: 76px;
  }
}
@media (min-width: 3840px) {
  .hero-section h1 {
    font-size: 110px;
  }
}
.hero-section .subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #1f7a5a;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hero-section .subtitle {
    font-size: 56px;
  }
}
@media (min-width: 1440px) {
  .hero-section .subtitle {
    font-size: 68px;
  }
}
@media (min-width: 2560px) {
  .hero-section .subtitle {
    font-size: 74px;
    margin-bottom: 22px;
  }
}
@media (min-width: 3840px) {
  .hero-section .subtitle {
    font-size: 92px;
    margin-bottom: 32px;
  }
}
.hero-section .description {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .hero-section .description {
    font-size: 15px;
    max-width: 560px;
  }
}
@media (min-width: 1440px) {
  .hero-section .description {
    font-size: 17px;
    max-width: 600px;
  }
}
@media (min-width: 2560px) {
  .hero-section .description {
    font-size: 24px;
    max-width: 900px;
  }
}
@media (min-width: 3840px) {
  .hero-section .description {
    font-size: 34px;
    max-width: 1300px;
  }
}

/* ============================================
   2. FEATURE BANNER
   ============================================ */
.feature-banner {
  padding: 30px 0 50px;
  background-color: #DAF5D4;
}
@media (min-width: 430px) {
  .feature-banner {
    padding: 36px 0 54px;
  }
}
@media (min-width: 768px) {
  .feature-banner {
    padding: 0 0 70px;
    background-color: transparent;
    background-image: url("../assets/about-bg.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
@media (min-width: 2560px) {
  .feature-banner {
    padding: 0 0 110px;
  }
}
@media (min-width: 3840px) {
  .feature-banner {
    padding: 0 0 160px;
  }
}

.feature-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .feature-banner-inner {
    flex-direction: row;
    align-items: flex-end;
    padding: 52px 75px 0;
    min-height: 480px;
    gap: 32px;
    background-image: url("../assets/big-ship.webp");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 42% auto;
  }
}
@media (min-width: 1024px) {
  .feature-banner-inner {
    padding: 24px 60px 0;
    min-height: 700px;
    background-size: 44% auto;
  }
}
@media (min-width: 1200px) {
  .feature-banner-inner {
    padding: 60px 72px 0;
    min-height: 560px;
    background-size: 44% auto;
  }
}
@media (min-width: 1440px) {
  .feature-banner-inner {
    padding: 0 80px;
    min-height: 700px;
    background-size: 44% auto;
  }
}
@media (min-width: 2560px) {
  .feature-banner-inner {
    max-width: 1800px;
    padding: 90px 110px 0;
    min-height: 860px;
    background-size: 44% auto;
  }
}
@media (min-width: 3840px) {
  .feature-banner-inner {
    max-width: 2600px;
    padding: 130px 160px 0;
    min-height: 1240px;
    background-size: 44% auto;
  }
}

.feature-text {
  position: relative;
  z-index: 2;
  text-align: left;
}
@media (min-width: 768px) {
  .feature-text {
    flex: 0 0 56%;
    text-align: left;
    align-self: center;
  }
}
.feature-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1e2d2d;
  line-height: 1.35;
  margin-bottom: 8px;
}
.feature-text h2 .green {
  color: #2e8b57;
}
@media (min-width: 430px) {
  .feature-text h2 {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .feature-text h2 {
    font-size: 24px;
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .feature-text h2 {
    font-size: 28px;
  }
}
@media (min-width: 2560px) {
  .feature-text h2 {
    font-size: 42px;
    max-width: 760px;
    margin-bottom: 12px;
  }
}
@media (min-width: 3840px) {
  .feature-text h2 {
    font-size: 60px;
    max-width: 1100px;
    margin-bottom: 18px;
  }
}

.feature-subtitle {
  font-size: 13px;
  color: #4f5f5f;
  margin-bottom: 8px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .feature-subtitle {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .feature-subtitle {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (min-width: 3840px) {
  .feature-subtitle {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

.feature-desc {
  font-size: 13px;
  color: #6b7074;
  line-height: 1.7;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .feature-desc {
    font-size: 14px;
    max-width: 500px;
    margin-bottom: 24px;
  }
}
@media (min-width: 2560px) {
  .feature-desc {
    font-size: 20px;
    max-width: 760px;
    margin-bottom: 36px;
  }
}
@media (min-width: 3840px) {
  .feature-desc {
    font-size: 28px;
    max-width: 1100px;
    margin-bottom: 52px;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
@media (min-width: 768px) {
  .feature-list {
    gap: 16px;
  }
}
@media (min-width: 2560px) {
  .feature-list {
    gap: 22px;
  }
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 2560px) {
  .feature-list-item {
    gap: 16px;
  }
}

.feature-icon {
  width: 34px;
  height: 34px;
  background: #dff3ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 15px;
  height: 15px;
  color: #2e8b57;
}
@media (min-width: 768px) {
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  .feature-icon svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 2560px) {
  .feature-icon {
    width: 52px;
    height: 52px;
  }
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 3840px) {
  .feature-icon {
    width: 72px;
    height: 72px;
  }
  .feature-icon svg {
    width: 34px;
    height: 34px;
  }
}

.feature-item-text h4 {
  font-size: 13px;
  font-weight: 600;
  color: #1e2d2d;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .feature-item-text h4 {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .feature-item-text h4 {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
@media (min-width: 3840px) {
  .feature-item-text h4 {
    font-size: 28px;
    margin-bottom: 6px;
  }
}
.feature-item-text p {
  font-size: 12px;
  color: #6b7074;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .feature-item-text p {
    font-size: 13px;
  }
}
@media (min-width: 2560px) {
  .feature-item-text p {
    font-size: 18px;
  }
}
@media (min-width: 3840px) {
  .feature-item-text p {
    font-size: 26px;
  }
}

/* Mobile-only ship image — shown below the green banner, hidden on desktop */
.feature-ship-mobile {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.feature-ship-mobile img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .feature-ship-mobile {
    display: none;
  }
}

/* ============================================
   3. SHARED SECTION LABELS & TITLES
   ============================================ */
.section-label {
  font-size: 11px;
  font-weight: 600;
  color: #1f7a5a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 7px;
  margin-top: 7px;
}
@media (min-width: 768px) {
  .section-label {
    font-size: 12px;
    margin-bottom: 8px;
    margin-top: 8px;
  }
}
@media (min-width: 1440px) {
  .section-label {
    font-size: 13px;
  }
}
@media (min-width: 2560px) {
  .section-label {
    font-size: 19px;
    margin-bottom: 12px;
    margin-top: 12px;
    letter-spacing: 3px;
  }
}
@media (min-width: 3840px) {
  .section-label {
    font-size: 26px;
    margin-bottom: 18px;
    margin-top: 18px;
  }
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
  line-height: 1.25;
}
@media (min-width: 430px) {
  .section-title {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .section-title {
    font-size: 30px;
    margin-bottom: 36px;
  }
}
@media (min-width: 1440px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .section-title {
    font-size: 52px;
    margin-bottom: 56px;
  }
}
@media (min-width: 3840px) {
  .section-title {
    font-size: 76px;
    margin-bottom: 80px;
  }
}

/* ============================================
   4. WHO WE ARE
   ============================================ */
.who-we-are {
  padding: 0 0 60px;
  background: #fff;
}
@media (min-width: 768px) {
  .who-we-are {
    padding: 0 0 70px;
  }
}
@media (min-width: 1440px) {
  .who-we-are {
    padding: 0 0 80px;
  }
}
@media (min-width: 2560px) {
  .who-we-are {
    padding: 0 0 110px;
  }
}
@media (min-width: 3840px) {
  .who-we-are {
    padding: 0 0 160px;
  }
}

.who-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1440px) {
  .who-cards {
    gap: 24px;
  }
}
@media (min-width: 2560px) {
  .who-cards {
    gap: 36px;
  }
}

.who-card {
  background: #f5f7f7;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid #e8ecec;
}
.who-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.who-card h3 .card-icon {
  width: 30px;
  height: 30px;
  background: #1f7a5a;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.who-card h3 .card-icon svg {
  width: 15px;
  height: 15px;
  color: #fff;
}
@media (min-width: 768px) {
  .who-card h3 {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .who-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
@media (min-width: 2560px) {
  .who-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    gap: 16px;
  }
}
@media (min-width: 3840px) {
  .who-card h3 {
    font-size: 46px;
    margin-bottom: 28px;
  }
}
.who-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}
@media (min-width: 1440px) {
  .who-card p {
    font-size: 15px;
  }
}
@media (min-width: 2560px) {
  .who-card p {
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .who-card p {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .who-card {
    padding: 32px 36px;
    border-radius: 20px;
  }
}
@media (min-width: 1440px) {
  .who-card {
    padding: 36px 40px;
  }
}
@media (min-width: 2560px) {
  .who-card {
    padding: 52px 58px;
    border-radius: 30px;
  }
}
@media (min-width: 3840px) {
  .who-card {
    padding: 76px 82px;
    border-radius: 44px;
  }
}

/* ============================================
   5. WHAT WE DO
   ============================================ */
.what-we-do {
  padding: 0 0 60px;
  background: #fff;
}
@media (min-width: 768px) {
  .what-we-do {
    padding: 0 0 70px;
  }
}
@media (min-width: 1440px) {
  .what-we-do {
    padding: 0 0 80px;
  }
}
@media (min-width: 2560px) {
  .what-we-do {
    padding: 0 0 110px;
  }
}
@media (min-width: 3840px) {
  .what-we-do {
    padding: 0 0 160px;
  }
}

.what-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1440px) {
  .what-cards {
    gap: 16px;
  }
}
@media (min-width: 2560px) {
  .what-cards {
    gap: 22px;
  }
}

.what-card {
  background: #f9fbfb;
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid #e8ecec;
  border-left: 4px solid #1f7a5a;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.what-card:hover {
  box-shadow: 0 6px 24px rgba(31, 122, 90, 0.08);
  transform: translateY(-2px);
}
.what-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .what-card h4 {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .what-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
@media (min-width: 2560px) {
  .what-card h4 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media (min-width: 3840px) {
  .what-card h4 {
    font-size: 38px;
    margin-bottom: 14px;
  }
}
.what-card p {
  font-size: 13px;
  color: #666666;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .what-card p {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .what-card p {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .what-card p {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .what-card {
    padding: 24px 28px;
    border-radius: 15px;
  }
}
@media (min-width: 1440px) {
  .what-card {
    padding: 28px 32px;
    border-radius: 16px;
  }
}
@media (min-width: 2560px) {
  .what-card {
    padding: 40px 46px;
    border-radius: 24px;
    border-left-width: 6px;
  }
}
@media (min-width: 3840px) {
  .what-card {
    padding: 58px 64px;
    border-radius: 32px;
    border-left-width: 8px;
  }
}

/* ============================================
   6. CTA BANNER (About page)
   ============================================ */
.cta-banner {
  padding: 0 16px 60px;
}
@media (min-width: 430px) {
  .cta-banner {
    padding: 0 20px 70px;
  }
}
@media (min-width: 768px) {
  .cta-banner {
    padding: 0 40px 80px;
  }
}
@media (min-width: 2560px) {
  .cta-banner {
    padding: 0 0 110px;
  }
}
@media (min-width: 3840px) {
  .cta-banner {
    padding: 0 0 160px;
  }
}

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: url("../assets/map.webp") center center/cover no-repeat;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 45px 50px;
    border-radius: 24px;
    gap: 40px;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .cta-banner-inner {
    padding: 50px 60px;
  }
}
@media (min-width: 2560px) {
  .cta-banner-inner {
    max-width: 2000px;
    padding: 72px 88px;
    border-radius: 36px;
  }
}
@media (min-width: 3840px) {
  .cta-banner-inner {
    max-width: 2900px;
    padding: 106px 130px;
    border-radius: 52px;
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
@media (min-width: 430px) {
  .cta-content h2 {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .cta-content h2 {
    font-size: 30px;
  }
}
@media (min-width: 2560px) {
  .cta-content h2 {
    font-size: 44px;
    margin-bottom: 8px;
  }
}
@media (min-width: 3840px) {
  .cta-content h2 {
    font-size: 64px;
    margin-bottom: 12px;
  }
}
.cta-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .cta-content p {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .cta-content p {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .cta-content p {
    font-size: 24px;
  }
}
@media (min-width: 3840px) {
  .cta-content p {
    font-size: 34px;
  }
}

.cta-btn {
  position: relative;
  z-index: 2;
  background: #fff;
  color: #1f7a5a;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
  min-height: 48px;
}
.cta-btn:hover {
  background: #e6f4ec;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .cta-btn {
    width: auto;
    padding: 14px 32px;
    font-size: 15px;
  }
}
@media (min-width: 2560px) {
  .cta-btn {
    font-size: 22px;
    padding: 20px 48px;
    border-radius: 18px;
  }
}
@media (min-width: 3840px) {
  .cta-btn {
    font-size: 32px;
    padding: 28px 68px;
    border-radius: 24px;
  }
}

/* ============================================
   7. VISION + MISSION + CORE VALUES
   ============================================ */
.vision-mission {
  padding: 0 0 60px;
}
@media (min-width: 768px) {
  .vision-mission {
    padding: 0 0 70px;
  }
}
@media (min-width: 1440px) {
  .vision-mission {
    padding: 0 0 80px;
  }
}
@media (min-width: 2560px) {
  .vision-mission {
    padding: 0 0 110px;
  }
}
@media (min-width: 3840px) {
  .vision-mission {
    padding: 0 0 160px;
  }
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (min-width: 2560px) {
  .vm-grid {
    gap: 60px;
  }
}

.vm-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 0;
}
@media (min-width: 768px) {
  .vm-left {
    padding-left: 28px;
    gap: 24px;
  }
  .vm-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1f7a5a, #a3d9c0);
    border-radius: 4px;
  }
}
@media (min-width: 2560px) {
  .vm-left {
    padding-left: 44px;
    gap: 36px;
  }
}
@media (min-width: 3840px) {
  .vm-left {
    padding-left: 60px;
    gap: 52px;
  }
}

.vm-card {
  background: #f5f7f7;
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid #e8ecec;
}
.vm-card .vm-label {
  font-size: 11px;
  font-weight: 600;
  color: #1f7a5a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .vm-card .vm-label {
    font-size: 12px;
  }
}
@media (min-width: 2560px) {
  .vm-card .vm-label {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (min-width: 3840px) {
  .vm-card .vm-label {
    font-size: 26px;
    margin-bottom: 18px;
  }
}
.vm-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .vm-card h3 {
    font-size: 19px;
  }
}
@media (min-width: 1440px) {
  .vm-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (min-width: 2560px) {
  .vm-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
  }
}
@media (min-width: 3840px) {
  .vm-card h3 {
    font-size: 44px;
    margin-bottom: 26px;
  }
}
.vm-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .vm-card p {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .vm-card p {
    font-size: 14.5px;
  }
}
@media (min-width: 2560px) {
  .vm-card p {
    font-size: 21px;
  }
}
@media (min-width: 3840px) {
  .vm-card p {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .vm-card {
    padding: 28px 32px;
    border-radius: 20px;
  }
}
@media (min-width: 1440px) {
  .vm-card {
    padding: 32px 36px;
  }
}
@media (min-width: 2560px) {
  .vm-card {
    padding: 46px 52px;
    border-radius: 30px;
  }
}
@media (min-width: 3840px) {
  .vm-card {
    padding: 66px 74px;
    border-radius: 44px;
  }
}

.vm-right {
  background: linear-gradient(135deg, #0a4a3a 0%, #1f7a5a 100%);
  border-radius: 22px;
  padding: 30px 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vm-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/map.webp") center center no-repeat;
  background-size: cover;
  opacity: 0.05;
}
@media (min-width: 768px) {
  .vm-right {
    padding: 36px 38px;
    border-radius: 24px;
  }
}
@media (min-width: 1440px) {
  .vm-right {
    padding: 40px 40px;
  }
}
@media (min-width: 2560px) {
  .vm-right {
    padding: 58px 58px;
    border-radius: 36px;
  }
}
@media (min-width: 3840px) {
  .vm-right {
    padding: 84px 84px;
    border-radius: 52px;
  }
}

.vm-right-content {
  position: relative;
  z-index: 2;
}

.vm-right .vm-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .vm-right .vm-label {
    font-size: 12px;
  }
}
@media (min-width: 2560px) {
  .vm-right .vm-label {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (min-width: 3840px) {
  .vm-right .vm-label {
    font-size: 26px;
    margin-bottom: 18px;
  }
}

.vm-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .vm-right h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .vm-right h3 {
    font-size: 26px;
  }
}
@media (min-width: 2560px) {
  .vm-right h3 {
    font-size: 38px;
    margin-bottom: 36px;
  }
}
@media (min-width: 3840px) {
  .vm-right h3 {
    font-size: 54px;
    margin-bottom: 52px;
  }
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1440px) {
  .values-list {
    gap: 18px;
  }
}
@media (min-width: 2560px) {
  .values-list {
    gap: 26px;
  }
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 1440px) {
  .value-item {
    gap: 14px;
  }
}
@media (min-width: 2560px) {
  .value-item {
    gap: 20px;
  }
}

.value-dot {
  width: 9px;
  height: 9px;
  background: #a3d9c0;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
@media (min-width: 768px) {
  .value-dot {
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 2560px) {
  .value-dot {
    width: 15px;
    height: 15px;
    margin-top: 8px;
  }
}
@media (min-width: 3840px) {
  .value-dot {
    width: 22px;
    height: 22px;
    margin-top: 12px;
  }
}

.value-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .value-item h4 {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .value-item h4 {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .value-item h4 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}
@media (min-width: 3840px) {
  .value-item h4 {
    font-size: 34px;
    margin-bottom: 8px;
  }
}

.value-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .value-item p {
    font-size: 13px;
  }
}
@media (min-width: 1440px) {
  .value-item p {
    font-size: 13.5px;
  }
}
@media (min-width: 2560px) {
  .value-item p {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .value-item p {
    font-size: 28px;
  }
}

/* ============================================
   8. CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 0 0 60px;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 0 0 70px;
  }
}
@media (min-width: 1440px) {
  .contact-section {
    padding: 0 0 80px;
  }
}
@media (min-width: 2560px) {
  .contact-section {
    padding: 0 0 110px;
  }
}
@media (min-width: 3840px) {
  .contact-section {
    padding: 0 0 160px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media (min-width: 2560px) {
  .contact-grid {
    gap: 72px;
  }
}

.contact-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 14px;
}
.contact-left h2 span {
  color: #1f7a5a;
}
@media (min-width: 430px) {
  .contact-left h2 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .contact-left h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1440px) {
  .contact-left h2 {
    font-size: 34px;
  }
}
@media (min-width: 2560px) {
  .contact-left h2 {
    font-size: 50px;
    margin-bottom: 22px;
  }
}
@media (min-width: 3840px) {
  .contact-left h2 {
    font-size: 72px;
    margin-bottom: 32px;
  }
}
.contact-left > p {
  font-size: 13px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .contact-left > p {
    font-size: 14px;
    margin-bottom: 28px;
  }
}
@media (min-width: 1440px) {
  .contact-left > p {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (min-width: 2560px) {
  .contact-left > p {
    font-size: 22px;
    margin-bottom: 44px;
  }
}
@media (min-width: 3840px) {
  .contact-left > p {
    font-size: 32px;
    margin-bottom: 64px;
  }
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (min-width: 430px) {
  .contact-actions {
    flex-direction: row;
    width: auto;
    gap: 16px;
  }
}
@media (min-width: 2560px) {
  .contact-actions {
    gap: 22px;
  }
}

.contact-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 13px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-height: 48px;
  width: 100%;
}
.contact-action-btn svg {
  width: 17px;
  height: 17px;
}
.contact-action-btn.primary {
  background: #1f7a5a;
  color: #fff;
}
.contact-action-btn.primary:hover {
  background: #176648;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 122, 90, 0.3);
}
.contact-action-btn.secondary {
  background: #f5f7f7;
  color: #333;
  border: 1px solid #e0e0e0;
}
.contact-action-btn.secondary:hover {
  background: #eef1f1;
  transform: translateY(-2px);
}
@media (min-width: 430px) {
  .contact-action-btn {
    width: auto;
  }
}
@media (min-width: 768px) {
  .contact-action-btn {
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 14px;
  }
  .contact-action-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 2560px) {
  .contact-action-btn {
    font-size: 20px;
    padding: 20px 36px;
    border-radius: 20px;
  }
  .contact-action-btn svg {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 3840px) {
  .contact-action-btn {
    font-size: 28px;
    padding: 28px 52px;
    border-radius: 28px;
  }
  .contact-action-btn svg {
    width: 40px;
    height: 40px;
  }
}

.contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}
.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .contact-card h3 {
    font-size: 19px;
  }
}
@media (min-width: 1440px) {
  .contact-card h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
@media (min-width: 2560px) {
  .contact-card h3 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (min-width: 3840px) {
  .contact-card h3 {
    font-size: 44px;
    margin-bottom: 56px;
  }
}
@media (min-width: 768px) {
  .contact-card {
    padding: 36px 36px;
    border-radius: 24px;
  }
}
@media (min-width: 1440px) {
  .contact-card {
    padding: 40px 40px;
  }
}
@media (min-width: 2560px) {
  .contact-card {
    padding: 58px 58px;
    border-radius: 36px;
  }
}
@media (min-width: 3840px) {
  .contact-card {
    padding: 84px 84px;
    border-radius: 52px;
  }
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-row:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contact-info-row {
    gap: 14px;
    margin-bottom: 22px;
  }
}
@media (min-width: 2560px) {
  .contact-info-row {
    gap: 20px;
    margin-bottom: 32px;
  }
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  background: #e6f4ec;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 17px;
  height: 17px;
  color: #1f7a5a;
}
@media (min-width: 1440px) {
  .contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .contact-info-icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 2560px) {
  .contact-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
  .contact-info-icon svg {
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 3840px) {
  .contact-info-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }
  .contact-info-icon svg {
    width: 38px;
    height: 38px;
  }
}

.contact-info-text .info-label {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
@media (min-width: 2560px) {
  .contact-info-text .info-label {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media (min-width: 3840px) {
  .contact-info-text .info-label {
    font-size: 23px;
    margin-bottom: 8px;
  }
}
.contact-info-text .info-value {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
@media (min-width: 1440px) {
  .contact-info-text .info-value {
    font-size: 15px;
  }
}
@media (min-width: 2560px) {
  .contact-info-text .info-value {
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .contact-info-text .info-value {
    font-size: 32px;
  }
}/*# sourceMappingURL=about.css.map */