/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;;
  background:  #ffffff ;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease-in;

}

/* --- LOGO --- */
.logo-container {
  margin-bottom: 25px;
}

.logo-container img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* --- TEXT CONTENT --- */
.text-content h1 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
 
}

.text-content p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* --- IMAGE --- */
.img-container {
  max-width: 100%;
  width: 100%;
  margin: 20px auto;
}

.img-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}



/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .text-content h1 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .logo-container img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .text-content h1 {
    font-size: 1.75rem;
  }

  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .social-links a {
    width: 100%;
  }
}
