.c-hero-section {
  background: #000;
  color: white;
  text-align: center;
  padding: 80px 20px; 
  margin: 0;
  margin-top: -30px;
}

.c-hero-section .container h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
}

.c-hero-section .container p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .c-hero-section {
  padding: 60px 20px;
  margin-top: 70px;
  margin-bottom: 20px;
  padding-bottom: auto;
  }

  .c-hero-section .container h1 {
    font-size: 1.6rem;
    margin: 0 0 8px 0;
    line-height: 1.3;
  }

  .c-hero-section .container p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .c-hero-section {
    padding: 50px 15px;
  }

  .c-hero-section .container h1 {
    font-size: 1.6rem;
  }

  .c-hero-section .container p {
    font-size: 0.95rem;
  }
}
section.contact-wrapper {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-wrapper .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-wrapper .contact-form-section,
.contact-wrapper .contact-info-section {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-wrapper .contact-form-section h2,
.contact-wrapper .contact-info-section h2 {
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-wrapper .submit-button {
  background: #000000;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 5px solid black;
  box-shadow: inset 0 0 0 2px white;
}

.contact-wrapper .submit-button:hover {
  background: #ff9800;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-wrapper .contact-inf {
  display: flex;
  flex-direction: column;
}

.contact-wrapper .inf-items-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-wrapper .inf-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 6px;
  width: 100%;
}

.contact-wrapper .inf-item i {
  color: #000000;
  width: 20px;
  margin-right: 10px;
  text-align: center;
  flex-shrink: 0;
}

.contact-wrapper .inf-item p {
  margin: 0;
  font-size: 0.95rem;
  white-space: normal;
  overflow: visible;
}

.additional-contact-content {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.additional-contact-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
  text-align: center;
}

.additional-contact-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.03);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-card .icon {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .icon {
  transform: scale(1.1);
}

.value-card h4 {
  font-size: 1.3rem;
  color: #0f0f0f;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: #555;
  font-size: 1rem;
}
a{
  text-decoration: none;
}
@media (max-width: 992px) {
  .contact-wrapper .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper .contact-info-section {
    order: -1;
  }

  .additional-contact-content h3 {
    font-size: 1.3rem;
  }

  .additional-contact-content p {
    font-size: 0.95rem;
  }
}
