body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000000;
  color: #FFFFFF;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
}

header .logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

header .logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 5px;
}

header .logo img {
  height: 40px;
  margin-right: 10px;
}

header .logo span {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

header nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

header nav a:hover {
  background-color: #22C55E;
  color: #FFFFFF;
  transform: scale(1.05);
}

#contact-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: #000000;
}

.hero-section {
  background-image: url('/assets/IMG_3703.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 30px;
  margin-bottom: 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.header-section {
  text-align: center;
  padding: 20px 30px;
}

#contact-page h1 {
  font-size: 48px;
  color: #22C55E;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

#contact-page .intro-text {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #CCCCCC;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.contact-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-info h3 {
  font-size: 24px;
  color: #22C55E;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-info .info-item i {
  color: #22C55E;
  font-size: 24px;
  margin-right: 15px;
}

.contact-info .info-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info .info-item a:hover {
  color: #22C55E;
}

.contact-info .social-links {
  text-align: left;
  margin-top: 20px;
}

.contact-info .social-links a {
  color: #FFFFFF;
  font-size: 30px;
  margin-right: 20px;
  transition: color 0.3s, transform 0.3s;
}

.contact-info .social-links a:hover {
  color: #22C55E;
  transform: scale(1.2);
}

.contact-image {
  flex: 1;
  min-width: 300px;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-image img:hover {
  transform: scale(1.05);
}

.map-title {
  font-size: 30px;
  color: #22C55E;
  margin: 40px 0 20px;
  font-family: 'Montserrat', sans-serif;
}

.contact-map {
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  filter: invert(90%) hue-rotate(180deg);
}

footer {
  background-color: #000000;
  padding: 40px 30px;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
}

footer .footer-links {
  display: flex;
  gap: 60px;
  justify-content: center;
}

footer .footer-links div {
  text-align: center;
}

footer .footer-links h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #22C55E;
  font-family: 'Montserrat', sans-serif;
}

footer .footer-links a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

footer .footer-links a:hover {
  color: #22C55E;
}

footer .footer-legal {
  text-align: right;
}

footer .footer-legal a {
  display: block;
  margin-bottom: 15px;
}

footer .footer-legal img {
  height: 50px;
  vertical-align: middle;
  transition: transform 0.3s;
}

footer .footer-legal img:hover {
  transform: scale(1.1);
}

footer .footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}

footer .footer-bottom p {
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  header {
    display: none;
  }

  #contact-page {
    padding: 80px 0 40px;
  }

  .hero-section {
    padding: 40px 15px;
    margin-bottom: 40px;
  }

  .header-section {
    padding: 20px 15px;
  }

  #contact-page h1 {
    font-size: 32px;
  }

  #contact-page .intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-container {
    padding: 0 15px;
  }

  .contact-content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 40px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .info-item {
    justify-content: center;
  }

  .contact-info .social-links {
    text-align: center;
  }

  .contact-info .social-links a {
    font-size: 24px;
    margin: 0 10px;
  }

  .map-title {
    font-size: 24px;
    margin: 30px 0 15px;
  }

  .contact-map iframe {
    height: 300px;
  }

  footer {
    padding: 15px;
  }

  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  footer .footer-links {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  footer .footer-links div {
    text-align: center;
  }

  footer .footer-links h4 {
    font-size: 18px;
  }

  footer .footer-links a {
    font-size: 16px;
  }

  footer .footer-legal {
    text-align: center;
    margin-top: 20px;
  }
}