.tg-card {
  display: flex;
  justify-content: center;
  margin: 1.2rem auto;
  max-width: 800px;
}

.tg-box {
  display: flex;
  align-items: center;
  width: 100%;
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 24px;
  background: linear-gradient(135deg, #0088cc 0%, #00aced 100%);
  box-shadow: 0 10px 20px rgba(0, 136, 204, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  gap: 2rem;
}



.left-image {
  width: clamp(100px, 15vw, 180px);
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.tg-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.tg-content img.logo {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

.tg-content h2 {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.tg-content h3 {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 400px;
}

.tg-content button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #0088cc;
  padding: 12px 28px;
  border: none;
  background-color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tg-content button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tg-content button svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .tg-card {
    margin: 1.2rem;
  }
  .tg-box {
    flex-direction: column;
    text-align: center;
    
  }
  
  .left-image {
    margin-bottom: 1.5rem;
  }
}




.insta-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.insta-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.insta-logo {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.insta-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.insta-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.insta-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insta-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: white;
  border-radius: 12px;
  border: 1px solid #eee;
  text-decoration: none;
  transition: all 0.2s ease;
}

.insta-link:hover {
  border-color: #ddd;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.insta-link-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: #e1306c;
}

.insta-link-text {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.insta-link-arrow {
  width: 16px;
  height: 16px;
  color: #999;
}