.disclaimer-section {
    background-color: #f2eaff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: left;
    padding: 0;
    color: #2b2b2b;
  }

  .wave-top svg,
  .wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
  }

  .disclaimer-box {
width: 80%;   
 margin: 0 auto;
    padding: 40px 25px;
    background-color: #ffffff;
    border-left: 5px solid #b7032d; /* Modern warm violet */
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  }

  .disclaimer-box h2 {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
  }

  .disclaimer-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .disclaimer-box ul {
    margin-bottom: 15px;
    padding-left: 20px;
  }

  .disclaimer-box ul li {
    font-size: 16px;
    margin-bottom: 8px;
    list-style: disc;
  }

  .disclaimer-box a {
    color: #c40a86;
    text-decoration: none;
    font-weight: 500;
  }

  .disclaimer-box a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .disclaimer-box {
      padding: 30px 20px;
    }

    .disclaimer-box h2 {
      font-size: 24px;
    }

    .disclaimer-box p,
    .disclaimer-box ul li {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .disclaimer-box {
      padding: 20px 15px;
    }

    .disclaimer-box h2 {
      font-size: 20px;
    }

    .disclaimer-box p,
    .disclaimer-box ul li {
      font-size: 14px;
    }
  }

   /* SM Styles - Social Media Section */
    .sm-section {
    --sm-bg-start: #f8f9fa;
    --sm-bg-end: #e9ecef;
    --sm-text-primary: #ffffff; /* Changed to white */
    --sm-text-secondary: #4a5568;
    --sm-card-bg: #ffffff;
    --sm-card-border: rgba(0, 0, 0, 0.05);
    --sm-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --sm-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    background: linear-gradient(135deg, var(--sm-bg-start) 0%, var(--sm-bg-end) 100%);
    padding: 4rem 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .sm-container {
    max-width: 1200px;
    margin: 0 auto;
    }

    .sm-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--sm-text-primary); /* Now using white */
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    }

    .sm-subtitle {
    font-size: 1.125rem;
    color: var(--sm-text-primary); /* Changed to white to match */
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    }

    .sm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    }

    .sm-card {
    display: flex;
    align-items: center;
    background: var(--sm-card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--sm-shadow);
    border: 1px solid var(--sm-card-border);
    }

    .sm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sm-shadow-hover);
    }

    .sm-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.25rem;
    flex-shrink: 0;
    }

    .sm-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    }

    .sm-content {
    text-align: left;
    flex-grow: 1;
    }

    .sm-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sm-text-secondary);
    margin: 0 0 0.25rem 0;
    }

    .sm-action {
    font-size: 0.875rem;
    color: var(--sm-text-secondary);
    font-weight: 500;
    }

    /* Platform Specific Colors */
    .sm-facebook { --sm-platform-color: #3b5998; --sm-hover-bg: #f0f5ff; }
    .sm-twitter { --sm-platform-color: #1da1f2; --sm-hover-bg: #f0f9ff; }
    .sm-youtube { --sm-platform-color: #ff0000; --sm-hover-bg: #fff0f0; }
    .sm-whatsapp { --sm-platform-color: #25d366; --sm-hover-bg: #f0fff4; }
    .sm-telegram { --sm-platform-color: #0088cc; --sm-hover-bg: #f0f9ff; }
    .sm-linkedin { --sm-platform-color: #0077b5; --sm-hover-bg: #f0f7ff; }

    .sm-instagram .sm-icon { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }
    .sm-instagram { --sm-hover-bg: #fff0f5; }

    .sm-card:hover {
    background: var(--sm-hover-bg);
    }
    .sm-icon {
    background-color: var(--sm-platform-color);
    }

    /* SM Responsive Adjustments */
    @media (max-width: 768px) {
    .sm-title {
        font-size: 1.75rem;
    }
    
    .sm-subtitle {
        font-size: 1rem;
    }
    
    .sm-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    }

    @media (max-width: 480px) {
    .sm-section {
        padding: 2.5rem 1rem;
    }
    
    .sm-card {
        padding: 1.25rem;
    }
    }