* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  color: #f5ead2;
  background: #073f2e;
  overflow-x: hidden;
}

html, body {
  height: 100%;
  margin: 0;
}

main {
  flex: 1;
}


.background-shapes {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 45% 55% 60% 40%;
  background: rgba(64, 112, 91, 0.35);
}

.shape-1 {
  top: -80px;
  left: -120px;
}

.shape-2 {
  top: 180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: rgba(44, 92, 78, 0.45);
}

.shape-3 {
  top: 600px;
  left: 15%;
  width: 360px;
  height: 360px;
  background: rgba(91, 135, 105, 0.28);
}

.shape-4 {
  top: 950px;
  right: 20%;
  width: 460px;
  height: 460px;
  background: rgba(31, 78, 67, 0.55);
}


.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 24px;
}

p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(7, 63, 46, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}



.logo img {
  height: 40px; 
  display: block;
  transition: transform 0.2s;
}



.logo:hover img {
  transform: scale(1.05);
}


.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #e8dcc4;
  font-size: 0.95rem;
  position: relative;
}


.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #a97142;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}


.burger {
  display: none;
  font-size: 1.8rem;
  color: #e8dcc4;
  cursor: pointer;
}

.footer {
  background: #062f23;
  color: #e8dcc4;
  padding: 12px 16px;
  font-size: 0.8rem;
  margin-top: 20px;
}



.footer-line {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer a {
  color: #e8dcc4;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-sep {
  opacity: 0.4;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #073f2e;
    flex-direction: column;
    width: 200px;
    padding: 10px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }
  
  .footer-line {
    display: none;
  }

  .footer-mobile {
    display: flex;
  }

}