  /* Terms of Service specific styles */
        header {
            background: linear-gradient(135deg, #0dad25 0%, #063706 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }
        
        .header-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .header-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .content-section {
            padding: 60px 0;
        }
        
        .section-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-content h2 {
            color: #2fa30c;
            margin-bottom: 30px;
            font-weight: 700;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }
        
        .section-content h3 {
            color: #343a40;
            margin-top: 35px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .section-content h4 {
            color: #495057;
            margin-top: 25px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .section-content p {
            line-height: 1.7;
            margin-bottom: 20px;
            color: #495057;
        }
        
        .section-content ul {
            margin-bottom: 25px;
            padding-left: 20px;
        }
        
        .section-content li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .section-content strong {
            color: #343a40;
        }
        
        .contact-info {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .contact-info h3 {
            color: #198754;
            margin-top: 0;
        }
        
        /* Ensure content is visible */
        #terms, #contact {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        /* WhatsApp button */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            z-index: 1000;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-btn img {
            width: 35px;
            height: 35px;
        }
        
        /* Language selector */
        .language-selector {
            margin-left: 20px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header-content h1 {
                font-size: 2rem;
            }
            
            .header-content p {
                font-size: 1rem;
            }
            
            .content-section {
                padding: 40px 0;
            }
        }