:root {
  --primary-color: #1a1f25;
  --secondary-color: #31b3d6;
  --accent-color: #146008;
  --text-color: #2c3e50;
  --light-bg: #f8f9fa;
  --border-color: #dee2e6;
}


.contact-section {
  padding: 120px 0 60px;
  background: var(--light-bg);
  flex: 1;
}

.logo-section {
  padding: 2rem;
}

.brand-logo {
  font-family: "Playfair Display", serif;
  margin-bottom: 2rem;
}

.logo-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--primary-color);
  display: block;
}

.contact-info {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-color);
}

.contact-info i {
  color: var(--secondary-color);
  width: 25px;
  margin-right: 10px;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2,
.contact-form-wrapper p {
  font-family: inherit;
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.contact-section .form-control {
  border: 1px solid var(--border-color);
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-section .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.contact-section label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-section .btn-primary {
  background: var(--secondary-color);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-section .btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}
