/* About Us Page Styles - Using base.css theme */
#about-us {
  background: #ffffff;
  min-height: 100vh;
  padding: 120px 0 80px 0;
  color: var(--text-color);
}

/* About Hero Section */
.about-hero-section {
  padding: 0 0;
  margin-bottom: 0;
  text-align: center;
}

.about-hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.about-hero-divider {
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  margin: 0 auto 40px auto;
}

.about-hero-paragraph {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
  font-weight: 400;
  max-width: 100%;
  margin: 0 0;
  text-align: left;
}

.about-hero-paragraph strong {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* Services Section */
.services-intro {
  margin-bottom: 40px;
  text-align: left;
}

.services-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 30px;
  text-align: left;
}

.services-section {
  margin-bottom: 60px;
}

.services-section .row {
  display: block;
}

.services-section .col-lg-6 {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  margin-bottom: 30px;
}

.service-item {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  margin-bottom: 40px;
  position: relative;
  display: block;
}

.service-item::before {
  display: none;
}

.service-item:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.service-icon {
  display: none;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
  position: relative;
  text-align: left;
  display: block;
  padding-left: 30px;
}

.service-title::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.service-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  text-align: left;
  display: block;
  margin-bottom: 20px;
  padding-left: 30px;
}

/* Conclusion Section */
.conclusion-section {
  padding: 40px 0;
  background: transparent;
  border-radius: 0;
  margin: 40px 0;
  text-align: left;
}

.conclusion-text {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
  font-weight: 400;
  max-width: 1000px;
  margin: 0;
  text-align: left;
}

.conclusion-text strong {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* Newsletter Section */
.newsletter-section {
  padding: 40px 0;
  background: var(--primary-color);
  border-radius: var(--border-radius);
  margin: 40px 0;
  color: white;
  text-align: center;
}

.newsletter-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.newsletter-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form .btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.newsletter-form .btn:hover {
  background: var(--light-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Container adjustments */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-hero-heading {
    font-size: 2.2rem;
  }
  
  .about-hero-paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .about-hero-heading {
    font-size: 2rem;
  }
  
  .service-title {
    font-size: 1.1rem;
  }
  
  .newsletter-heading {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  #about-us {
    padding: 100px 0 60px 0;
  }
  
  .about-hero-heading {
    font-size: 1.8rem;
  }
  
  .about-hero-paragraph {
    font-size: 0.95rem;
  }
  
  .services-heading {
    font-size: 1.2rem;
  }
  
  .service-title {
    font-size: 1rem;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
  
  .conclusion-text {
    font-size: 1rem;
  }
  
  .newsletter-heading {
    font-size: 1.3rem;
  }
  
  .newsletter-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .about-hero-heading {
    font-size: 1.6rem;
  }
  
  .about-hero-paragraph {
    font-size: 0.9rem;
  }
  
  .service-title {
    font-size: 0.95rem;
  }
  
  .service-description {
    font-size: 0.85rem;
  }
  
  .conclusion-text {
    font-size: 0.9rem;
  }
  
  .newsletter-heading {
    font-size: 1.2rem;
  }
  
  .newsletter-description {
    font-size: 0.85rem;
  }
  
  .newsletter-form .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Remove all animations for simple UI */
.service-item {
  animation: none;
}

/* Print styles */
@media print {
  .newsletter-section {
    background: white !important;
    color: black !important;
  }
  
  .newsletter-heading,
  .newsletter-description {
    color: black !important;
  }
  
  .newsletter-form {
    display: none;
  }
} 