.hero-section {
  background-color: var(--theme-tint-red); 
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.subtitle {
  color: var(--theme-red);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.headline {
  color: var(--theme-red);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.description {
  color: var(--theme-md-blue);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* Button Styling */
.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-red {
  background-color: var(--theme-red);
  color: var(--theme-light);
  box-shadow: 0 4px 15px var(--theme-deep-red);
}

.btn-red:hover {
  background-color: var(--theme-deep-red);
}

.btn-outline {
  border: 1px solid var(--theme-light-gray);
  color: var(--theme-md-blue);
  background-color: var(--theme-light);
}

.btn-outline:hover {
  background-color: var(--theme-light-gray);
  border-color: var(--theme-light);
}





/* services-section */
.services-section {
  padding: 80px 20px;
  background-color: var(--theme-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  padding: 40px;
  border: 1px solid var(--theme-light);
  border-radius: 12px;
  background: var(--theme-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px var(--theme-light-gray);
}

.icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--theme-tint-red); /* Light red tint */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--theme-light-red);
}

/* Simulated icons using CSS borders - you can replace with SVG/FontAwesome */
.icon-box i {
  color: var(--theme-red);
  font-size: 24px;
  font-style: normal;
  border: 2px solid currentColor;
  padding: 4px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-dark);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--theme-gray);
  margin-bottom: 24px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  font-size: 14px;
  color: var(--theme-gray);
  margin-bottom: 12px;
  padding-left: 15px;
  position: relative;
}

/* The red dot for list items */
.service-card li::before {
  content: "•";
  color: var(--theme-red);
  font-weight: bold;
  position: absolute;
  left: 0;
}




/* critical section  */
.critical-section {
  background-color: var(--theme-dark);
  color: var(--theme-light);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.container-cs {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap; /* Makes it responsive for mobile */
}

/* Left Side Styles */
.content-box {
  flex: 1;
  min-width: 300px;
}

.subtitle {
  color: var(--theme-red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 20px;
}

.content-box h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.content-box p {
  color: var(--theme-light-gray);
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 500px;
}

.cta-button {
  background: linear-gradient(135deg, var(--theme-red) 0%, var(--theme-deep-red) 100%);
  color: var(--theme-light);
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.2s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--theme-deep-red);
}

/* Right Side Grid Styles */
.stats-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 350px;
}

.stat-card {
  background-color: var(--theme-dark);
  padding: 40px 30px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.stat-card:hover {
  background-color: var(--theme-dark-hov);
}

.stat-number {
  color: var(--theme-red);
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-label {
  color: var(--theme-gray);
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .container-cs {
    flex-direction: column;
    text-align: center;
  }
  
  .content-box p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .stats-grid {
    width: 100%;
  }
}



/* SUPPORT SECTION  */
.support-section {
  padding: 60px 20px;
  background-color: #ffffff;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.support-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.support-card {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: var(--theme-red);
}

.support-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #fff1f1; /* Pale red background */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.support-icon {
  width: 28px;
  height: 28px;
  color: #d10000; /* Primary brand red */
}

.support-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #1a1a1a;
}

.support-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 30px;
  min-height: 50px; 
  font-weight: 600;
}

.support-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.support-btn:hover {
  background-color: var(--theme-light-red);
  border-color: var(--theme-red);
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .support-container {
    grid-template-columns: 1fr;
  }
}



/* help section   */
.help-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.header-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.header-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Matches the soft depth in the image */
  text-align: left;
  border: 1px solid var(--theme-light-gray);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box; /* Ensures padding doesn't break width */
  transition: border-color 0.2s;
}

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

.form-group textarea {
  resize: vertical; /* Allows user to expand but maintains width */
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #b30000; /* Darker red from image */
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #990000;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .form-container {
    padding: 25px;
  }
}