:root {
  --primary-color: #1B3A4B;
  --secondary-color: #D2E4DC;
  --accent-color: #4CAF50;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-light: #ffffff;
  --dark-bg: #121212;
  --gray-text: #9e9e9e;
}

.contact-header {
  height: 30vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
              url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&amp;fit=crop&amp;q=80');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 87px;
  
  color: var(--light-text);
}

@media (max-width: 768px) {
  .contact-header {
    height: 25vh;
    margin-top: 50px;
    background-attachment: scroll;
  }
}

.header-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.contact-header h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
  border-left: 5px solid var(--accent-color);
  padding-left: 20px;
}

.contact-intro {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.contact-intro h2{
  text-align: left; 
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: #4a5568;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.benefits-list i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.contact-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

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

.contact-info {
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  position: relative;
  height: fit-content;
}

.contact-info h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 1rem;
}

.contact-info h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.info-item i {
  color: var(--accent-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-item div {
  flex-grow: 1;
}

.info-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--accent-color);
}

.business-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.business-hours p {
  color: white;
  margin: 0.5rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
}

.contact-form h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  border-left: 5px solid var(--accent-color);
  padding-left: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2d3748;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26,35,126,0.1);
  background: #ffffff;
}

.contact-form button {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26,35,126,0.2);
}

.faq-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
  padding: 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  cursor: pointer;
  position: relative;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #4a5568;
  line-height: 1.6;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-header {
    height: 40vh;
    margin-top: 50px;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

  .contact-intro h2 {
    text-align:left; 
    line-height: 1.2; 
  }
  
  .contact-section {
    display: flex;
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }

  .contact-form {
    order: -1;
  }

  .contact-form h2{
    text-align: left; 
    line-height: 1.2; 
    
  }

  .contact-info {
    margin-top: 2rem;
  }

  .intro-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .info-item {
    padding: 0.75rem;
    margin-bottom: 1rem;
    gap: 1rem;
  }

  .info-item i {
    font-size: 1.2rem;
  }

  .business-hours {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .business-hours h3 {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 1.5rem;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
}