#about {
  padding: 120px 20px;
  background-color: #f8f8f8;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column Styles */
.since-badge {
  display: block;
  background-color: #8B2B2B;
  color: #ffffff;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 4px;
  width: fit-content;
}

.section-tag {
  display: inline-block;
  background-color: #FFE5E5;
  color: #8B2B2B;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 20px 0 10px 0;
  line-height: 1.2;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: #8B2B2B;
  margin: 10px 0 25px 0;
}

.lead {
  font-size: 16px;
  line-height: 1.85;
  color: #555555;
  margin: 0 0 20px 0;
}

/* Right Column - Services Box */
.about-visual {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: var(--black);
  border-radius: 10px;
  padding: 46px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--red);
  margin-top: 20px;
}

.about-visual h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 25px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

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

.service-list li {
  position: relative;
  padding: 12px 0 12px 40px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #8B2B2B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {


  h2 {
    font-size: 32px;
  }

  .about-visual {
    padding: 30px 25px;
  }

  .about-visual h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
.about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
