body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  
}

.instagram-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background: #fff;
}

.insta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.insta-card:hover {
  transform: translateY(-5px);
}

.insta-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: rotateIn 1s ease;
}

@keyframes rotateIn {
  from { transform: rotate(-180deg); opacity: 0; }
  to { transform: rotate(0); opacity: 1; }
}

.insta-content h2 {
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: #262626;
}

.insta-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.insta-stats {
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.follow-btn {
  padding: 12px 24px;
  background: #E1306C;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.follow-btn:hover {
  background: #c02e60;
}

@media (max-width: 500px) {
  .insta-card {
    padding: 20px;
  }

  .insta-content h2 {
    font-size: 1.25rem;
  }

  .follow-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}
