.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    color: #ea5898;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
}

.text {
    flex: 1 1 55%;
    font-size: 1.1rem;
    color: #444;
}

.image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .text, .image {
        flex: 1 1 100%;
    }

    h1 {
        font-size: 2rem;
    }
}
.footer {
    background-color: #5bb9eb;
    padding: 2rem 1rem;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #ea5898;
    margin-top: 3rem;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }
  
  .social-icons a {
    color: white;
    font-size: 1.6rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }
  
  .whatsapp:hover {
    color: #25d366;
  }
  
  .instagram:hover {
    color: #e1306c;
  }
  
  .facebook:hover {
    color: #1877f2;
  }
  .youtube:hover {
    color: #ff0000;
  }
  

  
    .social-icons a {
      font-size: 1.4rem;
    }