  /* Modern Terms of Service Styles */
  .terms-hero {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(46, 125, 50, 0.9) 100%), url('terms-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.terms-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.terms-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.terms-section h2 i {
    margin-right: 15px;
    color: #2a7f62;
}

.terms-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-section ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 10px;
}

.highlight-box {
    background-color: #f9f9f9;
    border-left: 4px solid #2a7f62;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
}

.highlight-box h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.notice-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
}

.notice-box h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-details {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-details h3 {
    margin-top: 0;
    color: #333;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: #2a7f62;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 80px 20px;
    }
    
    .terms-hero h1 {
        font-size: 2.2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
}