* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7f9;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #111;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(to right, #00c6e0, #0073b1);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Intro Section */
.about-intro h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Values Section */
.about-values h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.values-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.value-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 30%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  margin-bottom: 10px;
  color: #00c6e0;
}

/* Services Section */
.about-services h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-services ul {
  list-style-type: square;
  padding-left: 20px;
}

.about-services li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* CTA Section */
.about-cta {
  background-color: #00c6e0;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.about-cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #fff;
  color: #00c6e0;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
}

/* Grid Layout for About Intro */
.about-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 55%;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }
}

