body {
  margin: 0;
  padding: 0;
}

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

.contact-hero {
  background-image: url("assets/img/spices-contact-page.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.contact-hero .hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero .hero-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 16px;
}

.contact-hero .hero-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-section,
.map-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-size: 32px;
  color: #1b2b4d;
  margin-bottom: 32px;
}

.info-items {
  display: grid;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item svg {
  width: 24px;
  height: 24px;
  stroke: #35419c;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 20px;
  color: #1b2b4d;
  margin-bottom: 8px;
}

.info-item p {
  color: #666;
  margin-bottom: 4px;
}

.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1b2b4d;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #35419c;
}

.submit-btn {
  background: #35419c;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #2a3479;
}

.map-section {
  background-color: #fff;
}

.map-title {
  font-size: 32px;
  color: #1b2b4d;
  margin-bottom: 32px;
  text-align: center;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .contact-hero {
    height: 250px;
  }

  .contact-hero .hero-title {
    font-size: 36px;
  }

  .contact-hero .hero-description {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info h2,
  .contact-form-wrapper h2 {
    font-size: 28px;
  }

  .info-item h3 {
    font-size: 18px;
  }

  .contact-form {
    padding: 24px;
  }

  .map-section {
    padding: 40px 0;
  }

  .map-title {
    font-size: 28px;
  }
}

