 :root {
     --primary-color: #2a4365;
     --secondary-color: #4299e1;
     --accent-color: #e53e3e;
     --text-color: #4a5568;
     --light-bg: #f7fafc;
     --border-radius: 8px;
     --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .terms-hero {
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
     color: white;
     padding: 5rem 0;
     text-align: center;
     margin-bottom: 3rem;
     margin-top: 2rem;
 }

 .terms-container {
     max-width: 900px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .terms-title {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }


 .terms-content {
     background: white;
     border-radius: var(--border-radius);
     box-shadow: var(--box-shadow);
     padding: 2rem;
     margin-bottom: 2rem;
 }

 .terms-subtitle {
     color: var(--primary-color);
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     position: relative;
     padding-bottom: 0.5rem;
 }

 .terms-subtitle::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 3px;
     background-color: var(--accent-color);
 }

 .terms-content p {
     color: var(--text-color);
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

 .terms-content ul {
     margin-bottom: 1.5rem;
     padding-left: 1.5rem;
 }

 .terms-content li {
     margin-bottom: 0.5rem;
     line-height: 1.6;
 }

 .highlight-box {
     background-color: var(--light-bg);
     border-left: 4px solid var(--secondary-color);
     padding: 1.5rem;
     margin: 2rem 0;
     border-radius: 0 var(--border-radius) var(--border-radius) 0;
 }

 .highlight-box p {
     margin-bottom: 0;
     font-style: italic;
 }

 @media (max-width: 768px) {
     .terms-hero {
         padding: 3rem 0;
     }

     .terms-title {
         font-size: 2rem;
     }

     .terms-container {
         padding: 0 1rem;
     }
 }