  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    color: #111;
  }

  .smo-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }
  
  .smo-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
  }

  .smo-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
  }
  .smo-intro img {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 15px;
  }
  .smo-text {
    flex: 1 1 400px;
  }
  .smo-text h2 {
    font-size: 2rem;
    color: #3fc21e;
    margin-bottom: 15px;
  }

  .smo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .smo-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .smo-card:hover {
    transform: translateY(-5px);
  }
  .smo-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  .smo-card-content {
    padding: 20px;
  }
  .smo-card-content h3 {
    margin-top: 0;
    color: #3fc21e;
  }

  .smo-cta {
    background: linear-gradient(to right, #fc466b, #3f5efb);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin-top: 60px;
  }
  .smo-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .smo-cta a {
    background: white;
    color: #3fc21e;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  .smo-cta a:hover {
    background: #f0f0f0;
  }

  @media (max-width: 768px) {
    .smo-title {
      font-size: 1.6rem;
    }
    .smo-intro {
      flex-direction: column;
    }
  }
  
  .smo-container {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.smo-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.smo-intro img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.smo-text {
  text-align: center;
}

.smo-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.smo-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Tablet & Up */
@media (min-width: 768px) {
  .smo-intro {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .smo-text {
    flex: 1;
    text-align: left;
  }

  .smo-intro img {
    flex: 1;
    max-width: 50%;
  }
}

/* Desktop Large Screens */
@media (min-width: 1024px) {
  .smo-text h2 {
    font-size: 2.5rem;
  }

  .smo-text p {
    font-size: 1.1rem;
  }
}