body {
  background: #d9d9d9;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  min-height: 100vh;
  color: #32343b;
  display: flex;
  flex-direction: column;
}


.navbar {
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}
.logo img {
  width: 100px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 48px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.2s;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #d4c185;
  border-radius: 2px;
}
.nav-links a:hover { color: #d4c185; }


.contact-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 10px 50px 10px;
}
.contact-container {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
  max-width: 600px;
  width: 100%;
  padding: 48px 40px 36px 40px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #d4c185;
  color: #32343b;
}
.contact-title {
  font-size: 60px;
  font-weight: bold;
  color: #32343b;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.5px;
}
.contact-subtext {
  font-size: 24px;
  font-style: italic;
  color: #32343b;
  margin-bottom: 34px;
  text-align: center;
  font-family: 'Canva Sans', 'Arimo', sans-serif;
  opacity: 0.8;
}
.contact-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  font-size: 25px;
  font-weight: 500;
  color: #32343b;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.7;
}
.label {
  font-weight: bold;
  font-size: 24px;
  min-width: 130px;
  color: #32343b;
}
.contact-text, .contact-link {
  color: #32343b;
  font-size: 23px;
  font-weight: 500;
}
.contact-link {
  color: #1d61d6;
  text-decoration: underline;
  font-size: 23px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .contact-container { padding: 22px 8px 18px 8px; }
  .contact-title { font-size: 36px; }
  .label { font-size: 17px; }
  .contact-details { font-size: 16px; }
  .contact-link { font-size: 16px; }
}


.footer-section {
  font-family: 'Poppins', sans-serif;
}
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-left {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}
.footer-logo {
  width: 269px;
  height: 269px;
  object-fit: contain;
}
.footer-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
.footer-name {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-32 {
  width: 32px;
  height: 32px;
}
.info-text {
  font-family: 'Canva Sans', Arial, sans-serif;
  font-size: 22px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  gap: 10px;
}
.footer-links-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-link {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover {
  color: #ccc;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
}
.footer-bottom p {
  font-size: 15px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    align-items: center;
  }
  .footer-right {
    align-items: center;
    margin-top: 30px;
  }
  .footer-logo {
    width: 200px;
    height: auto;
  }
  .footer-name {
    font-size: 26px;
  }
  .info-text {
    font-size: 20px;
  }
  .footer-links-title {
    font-size: 18px;
  }
}
