:root {
    --primary: #d8dbdf;
    --secondary: #8338ec;
    --accent: #ff006e;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    background-color: var(--light);
    color: var(--dark);
  }

  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }

  header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
  }

  header::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200px;
    background: var(--light);
    bottom: -100px;
    left: -50%;
    border-radius: 50%;
    z-index: 1;
  }

  .header-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  h1 {
    font-size: 2.6em;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1.2em;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 1.8em;
    color: var(--primary);
    margin: 40px 0 20px;
    font-weight: 700;
  }

  h3 {
    font-size: 1.4em;
    color: var(--secondary);
    margin: 30px 0 15px;
    font-weight: 600;
  }

  p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: var(--dark);
  }

  ul {
    margin-bottom: 20px;
    padding-left: 25px;
  }

  li {
    margin-bottom: 10px;
  }
  /* Add this to your blog.css file */

.social-share-buttons {
  margin: 30px 0;
  padding: 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.social-share-buttons h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
}

.share-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-button i {
  margin-right: 8px;
  font-size: 16px;
}

.share-button.linkedin {
  background-color: #0077b5;
}

.share-button.twitter {
  background-color: #1da1f2;
}

.share-button.facebook {
  background-color: #1877f2;
}

.share-button.whatsapp {
  background-color: #25d366;
}

.share-button.copy {
  background-color: #333;
}

.share-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Success message styling for copy link button */
.copy-success {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  z-index: 1000;
  animation: fadeInOut 2s forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

/* Mobile responsive styles */
@media (max-width: 576px) {
  .share-buttons-container {
      flex-direction: column;
  }
  
  .share-button {
      width: 100%;
      justify-content: flex-start;
  }
}

  img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
  }

  .feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }

  .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }

  .card-icon i {
    color: white;
    font-size: 18px;
  }

  .quote {
    background-color: rgba(58, 134, 255, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
  }

  .cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    padding: 40px 30px;
    border-radius: 12px;
    color: white;
    text-align: center;
    margin: 50px 0;
  }

  .cta-section h2 {
    color: white;
    margin-top: 0;
  }

  .cta-button {
    display: inline-block;
    background-color: white;
    color: var(--secondary);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .tag {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--gray);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .steps-container {
    position: relative;
    margin: 40px 0;
  }

  .step {
    display: flex;
    margin-bottom: 30px;
  }

  .step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 20px;
    z-index: 2;
  }

  .step-content {
    flex-grow: 1;
  }

  .step-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    width: 2px;
    background-color: var(--light-gray);
    z-index: 1;
  }

  .image-caption {
    text-align: center;
    color: var(--gray);
    font-size: 0.9em;
    margin-top: -15px;
    margin-bottom: 30px;
  }

  footer {
    background-color:var(--light-gray);
    color: white;
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
  }

  .author-section {
    display: flex;
    align-items: center;
    margin: 40px 0;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
  }

  .author-bio {
    flex-grow: 1;
  }

  .author-bio h3 {
    margin-top: 0;
  }

  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }

  .social-links a {
    color: var(--dark);
    font-size: 1.2em;
    transition: color 0.3s ease;
  }

  .social-links a:hover {
    color: var(--secondary);
  }

  @media (max-width: 768px) {
    h1 {
      font-size: 2em;
    }
    
    .author-section {
      flex-direction: column;
      text-align: center;
    }
    
    .author-image {
      margin-right: 0;
      margin-bottom: 15px;
    }
  }
  
  .whatsapp-button {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-50%) scale(1.1);
  }

  .whatsapp-button i {
    font-size: 28px;
  }

  @media (max-width: 768px) {
    .whatsapp-button {
      width: 50px;
      height: 50px;
      right: 15px;
    }
    
    .whatsapp-button i {
      font-size: 24px;
    }
  }


