.contact-section {
  padding: 2px 0 50px;
  width: 100%;
}

.contact-container {
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 128px;
  line-height: 156.03px;
  color: #F4F8ED;
  text-align: center;
  margin-bottom: 100px;
  letter-spacing: 0;
}

.contact-content {
  display: flex;
  gap: 129px;
  align-items: flex-start;
}

.contact-info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 131px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 28px;
}

.contact-icon {
  flex-shrink: 0;
}

.icon {
  width: 101px;
  height: 101px;
  object-fit: contain;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 39.01px;
  color: #F4F8ED;
  margin: 0;
}

.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 39.01px;
  color: #F4F8ED;
  margin: 0;
  letter-spacing: 2.88px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 49px;
  max-width: 544px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29.26px;
  color: #F4F8ED;
  margin: 0;
}

.form-input,
.form-textarea {
  width: 100%;
  height: 44px;
  background: transparent;
  border: 3px solid #F4F8ED;
  border-radius: 10px;
  padding: 10px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #F4F8ED;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-textarea {
  height: 273px;
  resize: vertical;
  min-height: 100px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(244, 248, 237, 0.6);
}

.form-input:focus,
.form-textarea:focus {
  border-color: #1E8DDD;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-title {
    font-size: 96px;
    line-height: 120px;
    margin-bottom: 60px;
  }
  
  .contact-content {
    gap: 60px;
  }
  
  .contact-info {
    gap: 80px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 64px;
    line-height: 80px;
    margin-bottom: 40px;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-info {
    gap: 40px;
  }
  
  .contact-item {
    gap: 20px;
  }
  
  .icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-label {
    font-size: 24px;
    line-height: 30px;
  }
  
  .contact-value {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1.5px;
  }
  
  .form-group {
    gap: 8px;
  }
  
  .form-label {
    font-size: 20px;
    line-height: 24px;
  }
  
  .form-textarea {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 20px 0 30px;
  }
  
  .contact-title {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 30px;
  }
  
  .contact-content {
    gap: 30px;
  }
  
  .contact-info {
    gap: 30px;
  }
  
  .contact-item {
    gap: 15px;
  }
  
  .icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-label {
    font-size: 18px;
    line-height: 22px;
  }
  
  .contact-value {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
  }
  
  .form-group {
    gap: 20px;
  }
  
  .form-label {
    font-size: 16px;
    line-height: 20px;
  }
  
  .form-input,
  .form-textarea {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .form-textarea {
    height: 120px;
  }
}
.form-button {
  background-color: #F4F8ED;
  color: #005B99;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: #e2e8dd;
}
