* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

.contact-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px 20px;
  position: relative;
}

.contact-hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  min-height: 400px;
}

.contact-text {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 120px;
  font-weight: 600;
  color: #156e46;
  margin: 0 0 20px 0;
  line-height: 1;
  letter-spacing: -3px;
}

.contact-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: 35px;
  font-weight: normal;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.contact-info {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-link {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #333;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #156e46;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    gap: 60px;
  }

  .contact-subtitle {
    font-size: 28px;
  }
}