
 
 /* Base Styles */
   :root {
    --primary-color: #db3434;
    --secondary-color: #914a4a;
    --dark-color: #502c2c;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    margin-top: 50px;
}

/* Terms Section Container */
.terms-section {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.terms-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

/* Header Styles */
.terms-header {
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: white;
    padding: 30px;
    text-align: center;
}

.terms-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.terms-header h1 i {
    font-size: 1.8rem;
}

.last-updated {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Main Content Layout */
.terms-content {
    display: flex;
    flex-wrap: wrap;
}

/* Navigation Sidebar */
.terms-nav {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background: #f9f9f9;
    border-right: 1px solid #eee;
    position: sticky;
    top: 0;
    align-self: flex-start;
    max-height: 100vh;
    overflow-y: auto;
}

.terms-nav h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.terms-nav ul {
    list-style: none;
}

.terms-nav li {
    margin-bottom: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.nav-link:hover i, .nav-link.active i {
    transform: translateX(5px);
}

/* Articles Content */
.terms-articles {
    flex: 3;
    min-width: 300px;
    padding: 30px;
}

.term-article {
    margin-bottom: 40px;
    scroll-margin-top: 20px;
}

.term-article h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.term-article h2 i {
    color: var(--primary-color);
}

.term-article p {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Special Styled Elements */
.highlight-box {
    background: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.warning-box {
    background: #fff8f8;
    border-left: 4px solid #ff6b6b;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    list-style: none;
}

.payment-methods li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 50px;
}

.refund-policy {
    list-style: none;
    margin: 15px 0;
}

.refund-policy li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.refund-policy li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 10px;
    top: 5px;
}

.conduct-list {
    margin: 15px 0 15px 20px;
}

.notification-methods {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.notification-method {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 50px;
}

/* Footer & Accept Button */
.terms-footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.accept-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(219, 52, 52, 0.3);
}

.accept-button:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(219, 52, 52, 0.4);
}

.accept-button i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .terms-nav {
        position: static;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .terms-articles {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .term-article h2 {
        font-size: 1.4rem;
    }
    
    .terms-nav, .terms-articles {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .terms-header {
        padding: 20px 15px;
    }
    
    .terms-header h1 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .term-article h2 {
        font-size: 1.3rem;
    }
    
    .accept-button {
        width: 100%;
        justify-content: center;
    }
}




/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #502c2c, #914a4a);
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .footer-col {
    margin-bottom: 30px;
  }
  
  .footer-logo {
    height: 70px;
    margin-bottom: 20px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #db3434;
  }
  
  .footer-text {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.8;
  }
  
  .footer-links li {
    margin-bottom: 12px;
    list-style: none;
  }
  
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
  }
  
  .footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #db3434;
  }
  
  .contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    opacity: 0.8;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: #db3434;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-link {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: #db3434;
    transform: translateY(-3px);
  }
  
  /* Updated Newsletter Form with Rounded Button */
  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 14px;
  }
  
  .newsletter-form button {
    padding: 12px 25px;
    background: #db3434;
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
  }
  
  .newsletter-form button:hover {
    background: #2980b9;
    transform: scale(1.05);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
  }
  
  .goodbye-text {
    font-style: italic;
    opacity: 0.8;
    color: #db3434;
  }
  
  /* Font Awesome Icons */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
      border-radius: 30px;
      width: 100%;
    }
    
    .newsletter-form input {
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-container {
      grid-template-columns: 1fr;
    }
    
    .footer-col {
      text-align: center;
    }
    
    .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .contact-info p {
      justify-content: center;
    }
  }


