 .rodo-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            line-height: 1.6;
            color: #333;
        }
        
        .rodo-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
            background: linear-gradient(135deg, #4a90a4 0%, #5a9bb4 100%);
            color: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .rodo-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .rodo-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .rodo-section {
            margin-bottom: 2.5rem;
        }
        
        .rodo-section h2 {
            color: #4a90a4;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .rodo-section p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        
        .rodo-section ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }
        
        .rodo-section li {
            margin-bottom: 0.8rem;
            list-style-type: disc;
        }
        
        
        .contact-info strong {
            color: #4a90a4;
        }
        
        .breadcrumb {
            margin: 1rem 0;
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        
        .breadcrumb a {
            color: #4a90a4;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .rodo-container {
                padding: 1rem;
            }
            
            .rodo-header h1 {
                font-size: 1.8rem;
            }
            
            .rodo-content {
                padding: 1.5rem;
            }
            
            .rodo-section h2 {
                font-size: 1.2rem;
            }
        }